forked from Jaymontojo/IPT-frontend-excercise1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (43 loc) · 1.71 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
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Code Chrysalis</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- <h1 id="title"></h1> -->
<!-- <script src="./index.js"></script> -->
<div id="container">
<div id="login_container">
<div id="login_header">
<div id="login_title">New Account</div>
</div>
<div id="login_name_container">
<label id="login_name_label" for="login_name_input">Name</label>
<input id="lgoin_name_input" type="text" name="lgoin_name_input">
</div>
<div id="login_email_container">
<label id="login_email_label" for="login_email_input">Email</label>
<input id="lgoin_email_input" type="text" name="lgoin_email_input">
</div>
<div id="login_password_container">
<label id="login_password_label" for="login_password_input">Password</label>
<input id="lgoin_password_input" type="password" name="lgoin_password_input">
<div id="login_password_message">12 or more combination of letters, numbers, and symbols</div>
</div>
<div id="login_password_again_container">
<label id="login_password_again_label" for="login_password_again_input">Password (again)</label>
<input id="login_password_again_input" type="password" name="login_password_again_input">
</div>
<div id="login_submit_button_container">
<input id="login_submit_button_input" type="button" value="Create Account">
</div>
<div id="login_sign_in_container">
<a id="login_sign_in_link" href="">Already have an account? Sign in</a>
</div>
</div>
</div>
</body>
</html>