Welcome to mirror list, hosted at ThFree Co, Russian Federation.

login.html « templates - github.com/ClusterM/google-assistant-smart-home.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6494fbe99020a6180fffaecb56b5510ddca0efe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1" />
<title>Умный дом Кластера</title>        
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<form method="POST">
{% if login_failed %}
    <div class="error">Неправильное имя и/или пароль</div><br/>
{% endif %}
    Логин:<br/>
    <input type="text" name="username" size="20" /><br/>
    Пароль:<br/>
    <input type="password" name="password" size="20" /><br/><br/>
    <input type="submit" name="login" value="Войти">
</form>
</body>
</html>