blob: ff103f030eb70dab908408da8d6a0cfd5d115475 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<!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 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>
|