-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadd_book.html
56 lines (55 loc) · 1.87 KB
/
add_book.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
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>Add Book</title>
</head>
<style>
body{
background-image: url(https://www.src.sk.ca/sites/default/files/inline-images/iStock-516723558%20books%20sm.jpg);
}
h1 {
color: yellow;
text-align: center;
}
p {
font-family: Arial;
font-size: 20px;
}
</style>
<body>
<center>
<h1>Library Management System</h1>
<div class="topnav">
<a href="http://40.114.24.182/home.html" style="color:white">Home</a>
</div>
<h2>Add Book</h2>
<form method="post" action="connect.php">
<label for="title">Title:</label>
<input type="text" id="BookName" name="BookName">
<br>
<label for="author">Author:</label>
<input type="text" id="Author" name="Author">
<br>
<label for="isbn">ISBN:</label>
<input type="number" id="ISBN" name="ISBN">
<br>
<label for="year">Publication year:</label>
<input type="number" id="yearPublished" name="yearPublished">
<br>
<label for="format">Format:</label>
<input type="text" id="BookFormat" name="BookFormat">
<br>
<label for="genre">Genre:</label>
<input type="text" id="Genre" name="Genre">
<br>
<label for="pages">Pages:</label>
<input type="number" id="Pages" name="Pages">
<br>
<label for="Autorenew">Autorenew:</label>
<input type="text" id="Autorenew" name="Autorenew">
<br>
<input type="submit" value="Submit">
</form>
</center>
</body>
</html>