login.html (982B) download
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>Memory</title>
5 <link rel='stylesheet' href='css/login.css' />
6 <meta name='viewport' content='width=device-width, initial-scale=1' />
7 </head>
8 <body>
9 <div class='container' id='login'>
10 <span id='message'></span>
11 <form>
12 <input type='text' id='username' placeholder='Username' /><br>
13 <input type='text' id='email' placeholder='Email' style='display: none' /><br>
14 <input type='password' id='password' placeholder='Password' /><br>
15 <input type='password' id='password-again' placeholder='Retype Password' style='display: none' /><br>
16 <input type='checkbox' id='do-register' />
17 <label for="do-register">Do Register?</label><br>
18 <button type='button' id='submit'>submit</button>
19 </form>
20 <button id='logout'>logout</button>
21 </div>
22
23 <script type='text/javascript' src='backend.js'></script>
24 <script type='text/javascript' src='login.js'></script>
25 </body>
26</html>