-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.html
72 lines (56 loc) · 2.3 KB
/
registration.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
70
71
72
<!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">
<title>Registration</title>
<link rel="stylesheet" href="/style/registration.css">
</head>
<body>
<div id="nav">
<div class="conatiner_logo">
<a href="\">
<img
src="https://s1.thcdn.com/enterprise/assets/skstr-global-113e023e-ecc9-45df-abad-eb92ce1956c9-logo-default.svg"
alt="">
</a>
</div>
</div>
<form>
<div class="container">
<h2>About You</h2>
<h3>Sign Up With</h3>
<div id="socialconnect">
<div class="facebook">
<img class="fb"
src="https://cdn3.iconfinder.com/data/icons/free-social-icons/67/facebook_circle_color-512.png" alt="">
<div id="ff">Facebook</div>
</div>
<div class="google">
<img class="go" src="https://cdn1.iconfinder.com/data/icons/google-s-logo/150/Google_Icons-09-512.png" alt="">
<span id="gg"> Google</span>
</div>
</div>
<hr>
<h3>Or create an email account</h3>
<label for="name"><b>Full Name</b></label>
<input type="text" placeholder="Enter Full name" name="name" id="name" required>
<label for="email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" id="email" required>
<label for="cemail"><b> Confirm Email</b></label>
<input type="text" placeholder="Enter confirm Email" name="email" id="cemail" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" id="password" required>
<label for="psw-repeat"><b>Confirm Password</b></label>
<input type="password" placeholder="confirm Password" name="psw-repeat" id="psw-repeat" required>
<label for="number"><b>Phone Name</b></label>
<input type="text" placeholder="Enter phone name" name="name" id="number" required>
<button type="submit" class="registerbtn">CONTINUE</button>
<p>By preceeding you are confirming that you agree to our <a href="">Terms and Conditions</a> and <a
href="">Privacy Policy</a></p>
</div>
</form>
</body>
</html>
<script src="/Script/registration.js"></script>