-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.html
99 lines (96 loc) · 3.58 KB
/
user.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
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
<!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>User Registration Form</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/75ec19d660.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<div class="header">
<h2>Users</h2>
</div>
<form class="form" id="form">
<div class="success">
<h5 id="success-message"></h5>
</div>
<div class="form-control">
<label>First Name*</label>
<input type="text" placeholder="Abhinav" id="fname">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error Message</small>
</div>
<div class="form-control">
<label>Last Name*</label>
<input type="text" placeholder="Goyal" id="lname">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error Message</small>
</div>
<div class="form-control">
<label>Username*</label>
<input type="text" placeholder="abhi23" id="username">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error Message</small>
</div>
<div class="form-control">
<label>Email*</label>
<input type="text" placeholder="[email protected]" id="email">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error Message</small>
</div>
<div class="form-control">
<label>Address*</label>
<input type="text" placeholder="Gurgaon,Haryana" id="address">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error Message</small>
</div>
<div class="form-control">
<label>Phone*</label>
<input type="text" placeholder="024-648-3804" id="phone">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error Message</small>
</div>
<div class="form-control">
<label>Website</label>
<input type="text" placeholder="www.acciojob.com" id="website">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error Message</small>
</div>
<div class="form-control">
<label>Company Name</label>
<input type="text" placeholder="AccioJob" id="company">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error Message</small>
</div>
<button id="entry">Submit</button>
</form>
</div>
<div class="container2">
<h6 id="error-message"></h6>
<table class="display" id="display">
<tr>
<th>Sr.No</th>
<th>Name</th>
<th>Username</th>
<th>Email</th>
<th>Address</th>
<th>Phone</th>
<th>Website</th>
<th>Company</th>
</tr>
</table>
</div>
<script src="app.js"></script>
</body>
</html>