-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
121 lines (107 loc) · 4.7 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./media/ll.png">
<title>GamingZone</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./signup.css">
</head>
<body>
<header>
<a href="./index.html" class="logo"><span id="spansath">Gaming</span><span id="spanbina">Zone</span></a>
</header>
<video src="./media/videoplayback.mp4" autoplay muted loop type='mp4'></video>
<div class="container">
<form id="form1">
<h2>Create Account</h2>
<div class="form-data">
<input type="text" id="email" placeholder="Enter Email">
<i class="fa fa-check-circle" aria-hidden="true"></i>
<i class="fa fa-exclamation-circle" aria-hidden="true"></i>
<small>Error Msg</small>
</div>
<div class="form-data">
<input type="password" id="password1" placeholder="Enter Password">
<i class="fa fa-check-circle" aria-hidden="true"></i>
<i class="fa fa-exclamation-circle" aria-hidden="true"></i>
<small>Error Msg</small>
</div>
<div class="form-data">
<input type="password" id="password2" placeholder="Confirm Password">
<i class="fa fa-check-circle" aria-hidden="true"></i>
<i class="fa fa-exclamation-circle" aria-hidden="true"></i>
<small>Error Msg</small>
</div>
<div class="btn">
<button type="button" id="next1">Next</button>
</div>
</form>
<form id="form2">
<h2>Social Links</h2>
<div class="form-data">
<input type="text" id="linkedin" placeholder="Linkedin">
<i class="fa fa-check-circle" aria-hidden="true"></i>
<i class="fa fa-exclamation-circle" aria-hidden="true"></i>
<small>Error Msg</small>
</div>
<div class="form-data">
<input type="text" id="github" placeholder="Github">
<i class="fa fa-check-circle" aria-hidden="true"></i>
<i class="fa fa-exclamation-circle" aria-hidden="true"></i>
<small>Error Msg</small>
</div>
<div class="form-data">
<input type="text" id="facebook" placeholder="Facebook">
<i class="fa fa-check-circle" aria-hidden="true"></i>
<i class="fa fa-exclamation-circle" aria-hidden="true"></i>
<small>Error Msg</small>
</div>
<div class="btn">
<button type="button" id="back1">Back</button>
<button type="button" id="next2">Next</button>
</div>
</form>
<form id="form3">
<h2>Personal Information</h2>
<div class="form-data">
<input type="text" id="fname" placeholder="First Name">
<i class="fa fa-check-circle" aria-hidden="true"></i>
<i class="fa fa-exclamation-circle" aria-hidden="true"></i>
<small>Error Msg</small>
</div>
<div class="form-data">
<input type="text" id="lname" placeholder="Last Name">
<i class="fa fa-check-circle" aria-hidden="true"></i>
<i class="fa fa-exclamation-circle" aria-hidden="true"></i>
<small>Error Msg</small>
</div>
<div class="form-data">
<input type="tel" id="mobile" placeholder="Mobile No">
<i class="fa fa-check-circle" aria-hidden="true"></i>
<i class="fa fa-exclamation-circle" aria-hidden="true"></i>
<small>Error msg</small>
</div>
<div class="btn">
<button type="button" id="back2">Back</button>
<button type="button" id="submit">Submit</button>
</div>
</form>
<div class="step-row">
<div id="progress"></div>
<div class="step-col">
<small style="color: white;">Step-1</small>
</div>
<div class="step-col">
<small style="color: white;">Step-2</small>
</div>
<div class="step-col">
<small style="color: white;">Step-3</small>
</div>
</div>
</div>
<script src="./signup.js"></script>
</body>
</html>