-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (37 loc) · 1.55 KB
/
index.html
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
37
38
39
40
41
42
<!DOCTYPE html>
<html lang='en'>
<head>
<title>VSPT Demo</title>
<link rel='stylesheet' href='https://cdn.jsdelivr.net/gh/kognise/water.css@1.1.1/water.min.css'>
</head>
<body>
<h1>VSPT Demo</h1>
<p id='info'></p>
<h2>Login</h2>
<form id='login'>
<input id='login-email' type='email' placeholder='Email' autocomplete='email'>
<input id='login-password' type='password' placeholder='Password' autocomplete='current-password'>
<input id='login-rm' type='checkbox'> <label for='login-rm'>Remember me</label>
<input type='submit'>
</form>
<h2>Sign up</h2>
<form id='signup'>
<input id='signup-name' type='text' placeholder='Name' autocomplete='name'>
<input id='signup-email' type='email' placeholder='Email' autocomplete='email'>
<input id='signup-password' type='password' placeholder='Password' autocomplete='new-password'>
<input id='signup-password-cnf' type='password' placeholder='Confirm password' autocomplete='new-password'>
<input type='submit'>
</form>
<p>Make sure to get the confirm token from the command line and enter it into the form below.</p>
<h2>Confirm account</h2>
<form id='confirm'>
<input id='confirm-token' type='text' placeholder='Confirm token'>
<input type='submit'>
</form>
<h2>Buttons</h2>
<button id='logout'>Log out</button>
<button id='check'>Check logged in!</button>
<script src='https://cdnjs.cloudflare.com/ajax/libs/cash/3.1.0/cash.min.js'></script>
<script src='script.js'></script>
</body>
</html>