-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_remove_events.php
More file actions
30 lines (26 loc) · 887 Bytes
/
admin_remove_events.php
File metadata and controls
30 lines (26 loc) · 887 Bytes
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
<!DOCTYPR HTML>
<html>
<head align='center'>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Admin Remove Events</title>
<link rel="stylesheet" href="css/admin_remove_events.css" />
<link rel="stylesheet" href="E:/xampp/htdocs/Museum/fonts/fontawesome-free-5.10.2-web/css/all.min.css" />
</head>
<body style="background:url('images/paris.jpg') no-repeat; background-size: 100% 100%">
<center>
<h2>REMOVE EVENTS</h2>
<div class="data_delete_box">
<form action="admin_remove_events_code.php" method="POST">
<table>
<tr class="textbox">
<td>Enter Event Name : <input type="text" placeholder=" Enter Event Name" name="event_name" value="" required ></td>
</tr>
<tr>
<td><input class="btn" type="submit" value="REMOVE" ></td>
</tr>
</table>
</form>
</div>
</body>
</html>