-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
188 lines (179 loc) · 6.46 KB
/
index.html
File metadata and controls
188 lines (179 loc) · 6.46 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!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>Form Validation</title>
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="content">
<div class="logo">
<img src="https://svgshare.com/i/_go.svg" alt="" />
</div>
<div class="img">
<img src="/images/illustration.svg" alt="" />
</div>
<div class="text">
Start for free & get <br />
attractive offers today !
</div>
</div>
<form action="" id="form">
<div class="social">
<div class="title">Get Started</div>
<div class="question">
Already have an account? <br />
<span>Sign In</span>
</div>
<div class="btn">
<div class="btn-1">
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 48 48"
>
<path
fill="#FFC107"
d="M43.611,20.083H42V20H24v8h11.303c-1.649,4.657-6.08,8-11.303,8c-6.627,0-12-5.373-12-12c0-6.627,5.373-12,12-12c3.059,0,5.842,1.154,7.961,3.039l5.657-5.657C34.046,6.053,29.268,4,24,4C12.955,4,4,12.955,4,24c0,11.045,8.955,20,20,20c11.045,0,20-8.955,20-20C44,22.659,43.862,21.35,43.611,20.083z"
></path>
<path
fill="#FF3D00"
d="M6.306,14.691l6.571,4.819C14.655,15.108,18.961,12,24,12c3.059,0,5.842,1.154,7.961,3.039l5.657-5.657C34.046,6.053,29.268,4,24,4C16.318,4,9.656,8.337,6.306,14.691z"
></path>
<path
fill="#4CAF50"
d="M24,44c5.166,0,9.86-1.977,13.409-5.192l-6.19-5.238C29.211,35.091,26.715,36,24,36c-5.202,0-9.619-3.317-11.283-7.946l-6.522,5.025C9.505,39.556,16.227,44,24,44z"
></path>
<path
fill="#1976D2"
d="M43.611,20.083H42V20H24v8h11.303c-0.792,2.237-2.231,4.166-4.087,5.571c0.001-0.001,0.002-0.001,0.003-0.002l6.19,5.238C36.971,39.205,44,34,44,24C44,22.659,43.862,21.35,43.611,20.083z"
></path>
</svg>
Sign Up
</div>
<div class="btn-2">
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 48 48"
>
<path
fill="#039be5"
d="M24 5A19 19 0 1 0 24 43A19 19 0 1 0 24 5Z"
></path>
<path
fill="#fff"
d="M26.572,29.036h4.917l0.772-4.995h-5.69v-2.73c0-2.075,0.678-3.915,2.619-3.915h3.119v-4.359c-0.548-0.074-1.707-0.236-3.897-0.236c-4.573,0-7.254,2.415-7.254,7.917v3.323h-4.701v4.995h4.701v13.729C22.089,42.905,23.032,43,24,43c0.875,0,1.729-0.08,2.572-0.194V29.036z"
></path>
</svg>
Sign Up
</div>
</div>
<!-- OR Text -->
<div class="or">Or</div>
</div>
<!-- /**
* ! user name input here
**/-->
<div class="input-container">
<label for="username">Name</label>
<i class="fas fa-user input-icons"></i>
<input
type="text"
name="username"
id="username"
placeholder="Choose a username"
/>
<i class="fas fa-exclamation-circle failure-icon"></i>
<i class="far fa-check-circle success-icon"></i>
<!-- Error div -->
<div class="error"></div>
</div>
<!-- /**
* ! Email input here
**/-->
<div class="input-container">
<label for="email">Email </label>
<i class="far fa-envelope input-icons"></i>
<input
type="email"
name="email"
id="email"
placeholder="abc@gmail.com"
/>
<i class="fas fa-exclamation-circle failure-icon"></i>
<i class="far fa-check-circle success-icon"></i>
<!-- Error -->
<div class="error"></div>
</div>
<!-- /**
* ! Password input here
**/-->
<div class="input-container">
<label for="password">Password </label>
<i class="fa-solid fa-lock input-icons"></i>
<input
type="password"
id="password"
name="password"
placeholder="Password here"
aria-describedby="requirements"
required
/>
<!-- Show password icon -->
<div
class="toggle-icon"
role="switch"
aria-label="Show password"
aria-checked="false"
>
<i class="fa-regular fa-eye"></i>
</div>
<i class="fas fa-exclamation-circle failure-icon"></i>
<i class="far fa-check-circle success-icon"></i>
<!-- Error -->
<div class="error"></div>
</div>
<!-- /**
* !Confirm Password input here
**/-->
<!-- In progress -->
<div class="input-container">
<label for="confirm-password">Confirm Password </label>
<i class="fa-solid fa-lock input-icons"></i>
<input
type="password"
name="confirm-password"
id="confirm-password"
placeholder="Reenter you password"
/>
<i class="fas fa-exclamation-circle failure-icon"></i>
<i class="far fa-check-circle success-icon"></i>
<!-- Error -->
<div class="error"></div>
</div>
<!-- submit button -->
<button type="submit" id="button">Submit</button>
</form>
</div>
<script src="app.js"></script>
</body>
</html>