-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate.php
More file actions
56 lines (51 loc) · 1.42 KB
/
Copy pathupdate.php
File metadata and controls
56 lines (51 loc) · 1.42 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
<?php include('server.php')?>
<!DOCTYPE html>
<html>
<head>
<title> Update</title>
<style>
.button {
background-color: #e7e7e7; color: black
border: none;
color: black;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 30px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body style='background-color:powderblue;'>
<div class='container'>
<div class='header' style='font-size:35px'>
<h1>
<p style='text-align:center'> UPDATE DETAILS OF EMPLOYEE</p>
</h1>
<!-- Navigation for going back-->
<nav>
<table border="8px" align="right" style="width:8%;position:fixed;top:80px;right:0px;" >
<tr>
<td align="right" bgcolor="aqua"><a href="admin_index.php"style='text-decoration:none' <b>Go Back</b></a></td>
</tr>
</nav>
</div>
<form action='update.php' method = 'post' align='center'>
<div>
<p style='font-size:30px'>
<label style='color:blue;'> Employee ID :</label>
<input style='font-size:40px;height:30px;'type = 'text' name='update_id' required>
<div align='center'>
<div align='center'>
<button class="button" name="update_payroll"> Update </button>
</div>
</p>
</div>
</form>
</div>
</body>
</html>
<?php
?>