-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.php
More file actions
32 lines (32 loc) · 970 Bytes
/
main.php
File metadata and controls
32 lines (32 loc) · 970 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
30
31
32
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="default.css" rel="stylesheet" type="text/css">
<title></title>
</head>
<body>
<div id="top">
<h2>Welcome</h2>
</div>
<div id="mainContent">
<h2 align="center">Welcome to the ACM Library.<br><br>Basic actions are located on the left hand side.</h2>
</div>
<div id="leftColumn">
<p align="center">
<a href="search.php">Search</a>
<a href="add.php">Add Book</a>
<a href="renew.php">Renew</a>
<a href="checked_out.php">View Checked Out</a>
<a href="help.html">Help</a>
</p>
</div>
<?php
// put your code here
?>
</body>
</html>