-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (49 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="fa/css/all.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Create Account</title>
</head>
<body>
<div class="container">
<div class="header">
<h2>Create Account</h2>
</div>
<form id="form" class="form">
<div class="form-control">
<label>Username</label>
<input type="text" placeholder="prateekrohilla" id="username">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error Msg</small>
</div>
<div class="form-control">
<label>Email</label>
<input type="email" placeholder="[email protected]" id="email">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error Msg</small>
</div>
<div class="form-control">
<label>Password</label>
<input type="password" placeholder="Password" id="password">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error Msg</small>
</div>
<div class="form-control">
<label>Password Check</label>
<input type="password" placeholder="Password" id="password2">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error Msg</small>
</div>
<button>Submit</button>
</form>
</div>
<script src="script.js"></script>
</body>
</html>