-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanageEmp.html
60 lines (50 loc) · 1.96 KB
/
manageEmp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Manage Employees</title>
<link rel="stylesheet" href="style2.css">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
</head>
<body>
<div class="container">
<div id="home-page" class="page">
<button class="btn" style="width:100px; height:30px" onclick="location.href = 'welcomeToTheManagerPortalPage.html'">Back</button>
<h1 id="mangeEmployeeHeading">Manage Employees</h1>
<div class="wrapper">
<div id="employee-list">
<div class="employee-entry">
<img class="editcion" src="editicon.png"/>
<input class="employee-name" type="text" ></input>
</div>
<div class="employee-entry">
<img class="editcion" src="editicon.png"/>
<input class="employee-name" type="text" ></input>
</div>
<div class="employee-entry">
<img class="editcion" src="editicon.png"/>
<input class="employee-name" type="text" ></input>
</div>
<div class="employee-entry">
<img class="editcion" src="editicon.png"/>
<input class="employee-name" type="text" ></input>
</div>
<div class="employee-entry">
<img class="editcion" src="editicon.png"/>
<input class="employee-name" type="text" ></input>
</div>
</div>
<form action="firstLogin.html" method="post">
<input class="btn" type="submit" name="submit" value="Add Employee"/>
</form>
<form action="php/viewEmployees.php" method="post">
<input class="btn" type="submit" name="submit" value="Delete Employee"/>
</form>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>