-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainMenu.php
More file actions
22 lines (21 loc) · 928 Bytes
/
mainMenu.php
File metadata and controls
22 lines (21 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php require_once "securearea.php"; ?>
<div id="container">
<div class="half left">
<div class="center">
<h2>FATHER JONATHON'S</h2>
<p><strong>Best UHI Pizza</strong></p>
</div>
</div>
<div class="half right">
<?php require_once 'nav.php'; ?>
<div class="center">
<div class="list-group centralContainer">
<button class="btn btn-primary" id="mainMenuOrderBtn" onclick='loadPage("example.php");'>Example JS</button>
<button class="btn btn-primary" id="mainMenuOrderBtn" onclick='loadPage("order.php");'>Order Pizza</button>
<button class="btn btn-primary" id="mainMenuCreateBtn" onclick='loadPage("createPizza.php");'>Create Pizza</button>
<button class="btn btn-primary" id="mainMenuAccountBtn" onclick='loadPage("account.php");'>Account</button>
<button class="btn btn-danger" id="mainMenuLogoutBtn" onclick='loadPage("logout.php");'>Logout</button>
</div>
</div>
</div>
</div>