-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdel_user.html
More file actions
95 lines (88 loc) · 2.74 KB
/
del_user.html
File metadata and controls
95 lines (88 loc) · 2.74 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>::: Admin - Delete User :::</title>
<style>
/* General Body Styling */
body {
font-family: 'Segoe UI', Tahoma, sans-serif;
background: url("del_user.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
color: #333;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
/* Centered Container */
.container {
background: rgba(255, 255, 255, 0.9);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 12px;
padding: 30px;
text-align: center;
max-width: 400px;
width: 100%;
}
/* Title Styling */
h1 {
font-size: 24px;
color: #0078D7;
margin-bottom: 10px;
text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
/* Description Styling */
p {
font-size: 16px;
color: #555;
margin-bottom: 20px;
}
/* Form Styling */
form input[type="text"] {
width: 100%;
padding: 10px;
margin-bottom: 20px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 8px;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
form input[type="text"]:focus {
border-color: #1e73be;
box-shadow: 0 0 5px rgba(30, 115, 190, 0.5);
outline: none;
}
form button {
background-color: #1e73be;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
}
form button:hover {
background-color: #155b8a;
transform: scale(1.05);
}
</style>
</head>
<body>
<div class="container">
<h1>Delete User</h1>
<p>Enter the User ID of the user you wish to delete.</p>
<form method="POST" action="del_user.php">
<input type="text" style="width:350px;" name="user_id" placeholder="Enter User ID" required>
<button type="submit">Delete User</button>
</form>
</div>
</body>
</html>