login.html (542B)
1 <!DOCTYPE>
2
3 <html>
4 <head>
5 <title>Login</title>
6 <link rel="stylesheet" type="text/css" href="/style.css">
7 </head>
8
9 <body>
10
11 <div style="width: 100%; text-align: center">
12 <a href="/"><img class="logo" src="/logo.png"></a>
13 </div>
14
15 <div style="margin-top: 45px"></div>
16
17 <div style="text-align: center">
18 <form method="POST" action="/login/">
19 <input type="text" name="user" placeholder="Username">
20 <input type="password" name="passphrase" placeholder="Password">
21 <br>
22 <br>
23 <input type="submit" value="login">
24 </form>
25 </div>
26
27 </body>
28 </html>