-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
69 lines (68 loc) · 2.73 KB
/
signup.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="./images/fevicon_d.png">
<link rel="stylesheet" href="./style/signup.css">
<title>signup</title>
</head>
<body>
<div id="sign_main">
<div id="sign">
<h1>About us</h1>
<!-- top part -->
<div id="sigh_option">
<p>sign up with</p>
<div id="sign_options">
<div id="sigh_facebook">
<img src="./images/icons8-facebook-48.png" alt="">
<p>Facebook</p>
</div>
<div id="sigh_google">
<img src="./images/icons8-google-48.png" alt="">
<p>Google</p>
</div>
</div>
</div>
<!-- form part -->
<div id="sigh_form">
<p>Or create an email account</p>
<div>
<p>*Name</p>
<input type="text" id="Full Name">
</div>
<div>
<p>*Email address</p>
<input type="email" id="Email address">
</div>
<div>
<p>Confirm Email address</p>
<input type="email" id="Confirm Email address">
</div>
<div>
<p>*Password</p>
<input type="password" id="Password">
<p>Include a minimum of 6 characters, and contain at least 1 number</p>
</div>
<div>
<p>*Confirm Password</p>
<input type="password" id="Confirm Password">
</div>
<div>
<p>Cell Phone Number</p>
<input type="number" id="Cell Phone Number">
<p>We will use this number to send occasional promotional messages.</p>
</div>
<div id="sign_continue">
<div><input type="checkbox" id="sign_checkbox" value="true"> Include me in the Dermstore Rewards program <span class="sign_decore"> Read our terms of use.</span></div>
<button id="sign_submit">Continue</button>
<p>By proceeding, you are confirming that you agree to our <span class="sign_decore">Terms and Conditions</span> and <span class="sign_decore">Privacy Policy </span></p>
</div>
</div>
</div>
</div>
</body>
<script src="./script/signup.js"></script>
</html>