-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.delete.books.php
More file actions
77 lines (59 loc) · 2.4 KB
/
admin.delete.books.php
File metadata and controls
77 lines (59 loc) · 2.4 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
<?php
session_start();
include_once 'includes/dbh.inc.php';
?>
<html>
<head?>
<!--boostrap-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<title>Delete Book</title>
<style type="text/css">
.form-control {
width:400px;
}
.form1 {
margin:0 540px;
}
label {
color: white;
margin-top: 10px;
}
</style>
</head>
<body>
<!--...................................................................
..........................Admin Navigation Bar.............................
....................................................................-->
<?php
include_once 'admin.navigation.bar.php';
?>
<div style="background-image: url('Image/admin4.jpg'); background-size: cover; background-repeat :no-repeat;">
<br>
<form class="needs-validation border p-4 row" action="includes/bookdelete.php" method="post" enctype="multipart/form-data" style="border-radius: 12px; margin-left: 30px; margin-right: 30px;">
<h3 style="color: white; padding-top: 50px;">Delete Books</h3>
<!--...........................Books...................................-->
<div class="col-3 mt-5">
<label for="name" class="form-label">Book ID</label>
<input type="text" class="form-control" id="book" name="book" placeholder="Book ID">
</div>
<div class="col-9"> <!--for space--> </div>
<!--.........................Submit Button..........................-->
<button class="btn btn-outline-danger col-1 mt-5" type="submit" id="submit" name="delete" style="margin-left: 12px;">Delete</button>
<div style="padding-bottom: 40px;">
</form>
<br>
</div>
<!--...................................................................
..................................Footer...............................
....................................................................-->
<?php
include_once 'Footer/footer.php';
?>
</body>
</html>