-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (34 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Validation</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<form class="form" id="form">
<div class="segment">
<h1>Sign up</h1>
</div>
<label>
<input class="username form-control" id="username" type="text" placeholder="Enter Username" />
<small>Error Message</small>
</label>
<label>
<input class="email form-control" id="email" type="text" placeholder="Email Address" />
<small>Error Message</small>
</label>
<label>
<input class="password form-control" id="password" type="password" placeholder="Password" />
<small>Error Message</small>
</label>
<label>
<input class="password2 form-control" id="confirmPassword" type="password" placeholder="Confirm Password" />
<small>Error Message</small>
</label>
<button id="btn" class="red" type="submit"> Submit </button>
</form>
<script src="js/script.js"></script>
</body>
</html>