-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.31 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<form id="form" class="form">
<div class="container">
<h2>Register</h2>
<div class="form-control">
<label for="userName">UserName</label>
<input type="text" id="userName" placeholder="Enter Username">
<small>Error Message</small>
</div>
<div class="form-control">
<label for="Email">Email</label>
<input type="text" id="Email" placeholder="Type the Email">
<small>Error Message</small>
</div>
<div class="form-control">
<label for="Current Password">Current Password</label>
<input type="text" id="currentPassword" placeholder="Enter your current password">
<small>Error Message</small>
</div>
<div class="form-control">
<label for="New Password">New Password</label>
<input type="text" id="newPassword" placeholder="Enter your New Password">
<small>Error Message</small>
</div>
<button class="btn">Submit</button>
</div>
</form>
<script src="script.js"></script>
</body>
</html>