diff options
Diffstat (limited to 'service/templates/login.html')
-rw-r--r-- | service/templates/login.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/service/templates/login.html b/service/templates/login.html new file mode 100644 index 00000000..c2f5e78e --- /dev/null +++ b/service/templates/login.html @@ -0,0 +1,37 @@ +<!DOCTYPE html> +<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1"> +<head> + <title>Pixelated - Login</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <link rel="icon" type="image/png" href="/startup-assets/favicon.png" /> + <link rel="stylesheet" type="text/css" href="/startup-assets/normalize.min.css" /> + <link rel="stylesheet" type="text/css" href="/startup-assets/pixelated.css" /> + <link rel="stylesheet" type="text/css" href="/startup-assets/opensans.css" /> +</head> +<body> +<div class="content"> + <div class="login"> + + <img class="logo" src="/startup-assets/pixelated-logo-orange.svg" alt="Pixelated logo"/> + + <p t:render="error_msg" class="error" ></p> + + + <form class="standard" id="login_form" action="/login" method="post"> + <input t:render="csrftoken" type="hidden" name="csrftoken" id="csrftoken"><t:attr name="value"><t:slot name="csrftoken" /></t:attr></input> + <input type="text" name="username" id="email" class="text-field" placeholder="username" tabindex="1" + autofocus="" /> + <input type="password" name="password" id="password" class="text-field" placeholder="password" + tabindex="2" autocomplete="off" /> + + <input type="submit" name="login" value="Login" class="button" tabindex="3" /> + + </form> + </div> + <div class="disclaimer"> + <div t:render="disclaimer"></div> + </div> +</div> +</body> + +</html> |