forked from kirannegi0149/Employee-Management
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelete.jsp
More file actions
77 lines (67 loc) · 1.79 KB
/
delete.jsp
File metadata and controls
77 lines (67 loc) · 1.79 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<%@ include file = "navbar.jsp" %>
<html>
<head>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color:#dde3df;
}
.content {
margin-top: 60px;
display: flex;
justify-content: center;
align-items: center;
height: 50vh;
}
form {
background: #f9f9f9;
padding: 20px 40px;
border-radius: 8px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
label {
font-size: 16px;
font-weight: bold;
}
input[type="number"] {
padding: 8px;
width: 200px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
background-color: #d9534f;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #c9302c;
}
table {
border-collapse: collapse;
}
td {
padding: 20px;
}
</style>
</head>
<body onload="makeActive('delete')">
<div class="content">
<form action="confirm delete.jsp">
<table>
<tr>
<td><label for="eid">Enter Employee ID:</label></td>
<td><input type="number" name="eid" id="eid" required></td>
<td><button type="submit">Delete Button</button></td>
</tr>
</table>
</form>
</div>
</body>
</html>