-
Notifications
You must be signed in to change notification settings - Fork 345
/
Copy pathindex.html
64 lines (54 loc) · 2.58 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
54
55
56
57
58
59
60
61
62
63
64
<html>
<head>
<title>HRnet</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="jquery.datetimepicker.full.min.js"></script>
<link rel="stylesheet" href="jquery.datetimepicker.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css" />
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="app.js"></script>
<link rel="stylesheet" href="app.css" />
</head>
<body>
<div class="title">
<h1>HRnet</h1>
</div>
<div class="container">
<a href="employee-list.html">View Current Employees</a>
<h2>Create Employee</h2>
<form action="#" id="create-employee">
<label for="first-name">First Name</label>
<input type="text" id="first-name" />
<label for="last-name">Last Name</label>
<input type="text" id="last-name" />
<label for="date-of-birth">Date of Birth</label>
<input id="date-of-birth" type="text" >
<label for="start-date">Start Date</label>
<input id="start-date" type="text" >
<fieldset class="address">
<legend>Address</legend>
<label for="street">Street</label>
<input id="street" type="text" />
<label for="city">City</label>
<input id="city" type="text" />
<label for="state">State</label>
<select name="state" id="state"></select>
<label for="zip-code">Zip Code</label>
<input id="zip-code" type="number" />
</fieldset>
<label for="department">Department</label>
<select name="department" id="department">
<option>Sales</option>
<option>Marketing</option>
<option>Engineering</option>
<option>Human Resources</option>
<option>Legal</option>
</select>
</form>
<button onclick="saveEmployee()">Save</button>
</div>
<div id="confirmation" class="modal">Employee Created!</div>
</body>
</html>