-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (57 loc) · 1.95 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Registration Form</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body>
<div class="wrapper">
<h2 id="hid">Registration Form</h2>
<div id="error_message"></div>
<form id="myform" name="form" action="/index.html?" method="get">
<div class="input_field">
<input class="name" type="text" placeholder="Name" id="name" />
<h5 class="usercheck">**Username is missing</h5>
</div>
<div class="input_field">
<input class="email" type="text" placeholder="Email" id="email" />
<h5 class="usercheck">**Email is missing</h5>
</div>
<div class="input_field fd">
<input
class="password"
type="password"
placeholder="Password"
id="pass"
/>
<h5 class="usercheck">**password is missing</h5>
<div class="show-hide"><input type='checkbox' id='toggle' value='0' > <span id='toggleText'>Show</span></td></div>
</div>
<div class="input_field">
<input
class="cpass"
type="password"
placeholder="Confirm Password"
id="cpass"
/>
<h5 class="usercheck">**Confirm password is missing</h5>
</div>
<div class="pswdmatch"></div>
<input type="submit" value="submit" />
</form>
</div>
<div class="conte">
<div class="modals"><h1>thanks for submiting the form</h1></div>
</div>
</body>
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
></script>
<script src="./app.js"></script>
</html>