-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 1.07 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
<html>
<head></head>
<body>
<form id="registerForm">
<input type="email" name="email" placeholder="email" />
<input type="password" name="password" placeholder="password" />
<input type="submit" value="register" />
<br/>
<span id="registerResponse"></span>
</form>
<hr/>
<form id="registerConfirmForm">
<input type="email" name="email" placeholder="email to validate" />
<input type="number" name="confirmCode" placeholder="confirmation code" />
<input type="submit" value="validate" />
<br/>
<span id="registerConfirmResponse"></span>
</form>
<hr/>
<form id="loginForm">
<input type="email" name="email" placeholder="email" />
<input type="password" name="password" placeholder="password" />
<input type="submit" value="login" />
<br/>
<span id="loginResponse"></span>
</form>
<script src="bundle.js"></script>
</body>
</html>