forked from AndrewCawthon/COSC481W-Team3-FinalProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddEmp.html
71 lines (51 loc) · 1.71 KB
/
addEmp.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
<!-- edited by Cecilia. added working links -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="style.css">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Add New Employee</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
</head>
<body onload="loadEmployees()">
<div class="container">
<div id="edit-page" class="page">
<div>
<button class="btn" style="width:100px; height:30px" onclick="location.href = 'manageEmp.html'">Back</button>
<h1>Add New Employee</h1>
</div>
<div class="wrapper">
<div class="flex">
<div class="block">
<label>First Name: </label><input type="text" id="fname"/>
</div>
<div class="block">
<label>Last Name: </label><input type="text" id="lname"/>
</div>
<div class="block">
<label for="admin?">Admin? </label>
<select id="admin?" name="admin?">
<option value="false">No</option>
<option value="true">Yes</option>
</select>
</div>
<div class="block">
<label>Employee #: </label><input type="text" id="employeeNo"/>
</div>
<div class="block">
<label>Phone No.: </label><input type="text" id="phoneNo"/>
</div>
<div class="block">
<label>Email: </label><input type="text" id="email"/>
</div>
</div>
<button class="btn" onclick="addNewEmployee()">Add Employee</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>