-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemployee.html
More file actions
62 lines (53 loc) · 1.86 KB
/
employee.html
File metadata and controls
62 lines (53 loc) · 1.86 KB
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
<!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" />
<link rel="stylesheet" href="style.css" />
<title>Employee Information</title>
</head>
<body>
<div id="container">
<h1>Employee Informatioon</h1>
<form id="employee-form" action="">
<div class="margin">
<label for="first-name">First Name: </label>
<input type="text" name="first-name" id="first-name" />
</div>
<div class="margin">
<label for="last-name">Last Name: </label>
<input type="text" name="last-name" id="last-name" />
</div>
<div class="margin">
<label for="designation">Designation: </label>
<input type="text" name="designation" id="designation" />
</div>
<div class="margin">
<label for="date-of-joining">Date of Joining: </label>
<input type="text" name="date-of-joining" id="date-of-joining" />
</div>
<div class="margin">
<label for="salary">Salary: </label>
<input type="text" name="salary" id="salary" />
</div>
<div class="margin">
<label for="email">Email: </label>
<input type="text" name="email" id="email" />
</div>
<div class="margin">
<label for="mobile">Mobile: </label>
<input type="text" name="mobile" id="mobile" />
</div>
<div class="margin">
<input type="button" value="Create" onclick="addEmployee()" />
</div>
</form>
<div class="margin">
<input type="button" value="Show" onclick="showEmployee()" />
</div>
<div class="margin" id="view"></div>
</div>
<script src="employee.js"></script>
</body>
</html>