-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.php
executable file
·33 lines (28 loc) · 1.09 KB
/
index.php
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
<?php
require_once('classes.inc.php');
require_once('globals.inc.php');
?>
<HTML>
<HEAD>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<TITLE>Personal Inventory - Main</TITLE>
<LINK REL="stylesheet" href="src/less/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="src/less/bootstrap/dist/css/bootstrap-theme.css">
</HEAD>
<BODY>
<div class="container">
<H1>Personal Inventory</H1>
<P>
<A HREF="item.php" class="btn btn-default" role="button">New Item</A>
<A HREF="allitems.php" role="button" class="btn btn-info">All Items</A>
<A HREF="backup.php" role="button" class="btn btn-success">Database Backup or Restore</A>
</P>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="src/less/bootstrap/dist/js/bootstrap.js"></script>
</BODY>
</HTML>