-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
31 lines (26 loc) · 1 KB
/
index.php
File metadata and controls
31 lines (26 loc) · 1 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
<html>
<head>
<link rel="stylesheet" href="style.css"></link>
</head>
<body>
<h3> Welcome to the Library Portal. Please select an action </h3>
<form action="lend_book.php">
<input type="submit" value="Lend a Book" class="clickButton" />
</form>
<form action="return_book.php">
<input type="submit" value="Return a Book" class="clickButton" />
</form>
<form action="add_member.php">
<input type="submit" value="Add a New Member" class="clickButton" />
</form>
<form action="add_book.php">
<input type="submit" value="Add a New Book" class="clickButton" />
</form>
<form action="view_books.php">
<input type="submit" value="View All Books in the Library" class="clickButton" />
</form>
<form action="view_members.php">
<input type="submit" value="View All Members of the Library" class="clickButton" />
</form>
</body>
</html>