-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (98 loc) · 4.3 KB
/
index.html
File metadata and controls
103 lines (98 loc) · 4.3 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
<!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>
<script src="scripts/scripts.js"></script>
<link rel="stylesheet" href="assets/stylesheets/main.css">
<!-- Font Awesome JS -->
<script src="https://kit.fontawesome.com/21aa754e66.js" crossorigin="anonymous"></script>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fleur+De+Leah&display=swap" rel="stylesheet">
</head>
<body>
<div id="page">
<div id="header">
<div class="container text-center">
<span>--- Registration Form ---</span>
<hr>
</div>
</div>
<div class="content">
<div class="container">
<table id="form">
<tr>
<td class="input-label">Enter Name</td>
<td>
<input type="text" placeholder="Enter your name" class="box input-box">
</td>
<td class="row">
<span class="err-name err-span"></span>
</td>
</tr>
<tr>
</tr>
<tr>
<td class="input-label">Enter Username</td>
<td>
<input type="text" placeholder="Enter your username" class="box-2 input-box">
</td>
<td class="row">
<span class="err-username err-span"></span>
</td>
</tr>
<tr>
<td class="input-label">Enter Email</td>
<td>
<input type="text" placeholder="Enter your email-ID" class="box-email input-box">
</td>
<td class="row">
<span class="err-email err-span"></span>
</td>
</tr>
<tr>
<td class="input-label">Enter Password</td>
<td>
<input type="password" class="box-3 input-box" placeholder="Enter your password">
<span class="box-3-visiblity-span">
<input type="checkbox" class="box-3-visiblity">
<span class="box-3-visiblity-icon"></span>
</span>
</td>
<td class="row">
<span class="err-password err-span"></span>
</td>
</tr>
<tr>
<td class="input-label">Confirm Password</td>
<td>
<input type="password" class="box-4 input-box" placeholder="Enter your password">
<span class="box-4-visiblity-span">
<input type="checkbox" class="box-4-visiblity">
<span class="box-4-visiblity-icon"></span>
</span>
</td>
<td class="row">
<span class="err-confirm-password err-span"></span>
</td>
</tr>
<tr>
<td colspan="2" class="submit-btn">
<input type="submit" class="form-submit">
</td>
</tr>
<tr>
<td colspan="2" class="submit-msg">
<!-- <span class="form-submit-msg">SUCCESS!</span> -->
</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>