-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelete.php
More file actions
50 lines (48 loc) · 1.41 KB
/
Copy pathdelete.php
File metadata and controls
50 lines (48 loc) · 1.41 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
<?php include('server.php')?>
<!DOCTYPE html>
<html>
<head>
<title> Delete Record</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'> DELETE RECORD OF EMPLOYEE</p>
</h1>
<!-- Navigation for going back-->
<nav>
<table border="8px" align="right" style="width:6%;position:fixed;top:80px;right:0px;" >
<tr>
<td align="right" bgcolor="aqua"><a href="admin_index.php"style='width:8%;text-decoration:none;font-size:25px' <b>Go Back</b></a></td>
</tr>
</nav>
</div>
<form action='delete.php' method = 'post' align='center'>
<div>
<p style='font-size:30px'>
<label style='color:blue;'> Employee ID :</label>
<input style='font-size:20px;height:33px;'type = 'text' name='delete_id' required>
<div align='center'>
<button style='height:40px;width:fit-content;blue;' type='submit' name='delete'>DELETE</button>
</div>
</p>
</div>
</form>
</div>
</body>
</html>