-
Notifications
You must be signed in to change notification settings - Fork 2
/
deleteslots.html
49 lines (46 loc) · 1.62 KB
/
deleteslots.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Slot Management</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="admin.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="icon" href="Parking.jpeg" type="image/x-icon" />
</head>
<body>
<header>
<img src="admin.png">
</header>
<div class="topnav" id="myTopnav">
<a href="userdetail.html">Users</a>
<a href="slot.html">Slot Management</a>
<a href="worker.html">Worker Management</a>
<a href="Login.html">Logout</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<div>
<center>
<h1>Delete Slot(s)</h1><br>
<form id="form1">
<label for="number">Number of Slot(s) to be deleted:</label>
<input type="number" placeholder="Enter Number" id="number">
</form>
<br><br>
<center>
<div class="liquid">
<button type="submit" value="submit" form="form1">
<span>Submit</span>
</button>
</div>
</center>
<script src="deleteslots.js"></script>
</center>
</div>
</body>
</html>