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

github.com/ClusterM/google-assistant-smart-home.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'templates/login.html')
-rwxr-xr-xtemplates/login.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/login.html b/templates/login.html
new file mode 100755
index 0000000..6494fbe
--- /dev/null
+++ b/templates/login.html
@@ -0,0 +1,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>