-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbaristaHomePage.php
49 lines (45 loc) · 1.25 KB
/
baristaHomePage.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>Home Page</title>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
</head>
<body>
<div class="container-fill">
<div class="text-center bg-inverse" style="padding: 10px">
<div class="row">
<div class="col-2">
<h2 style="color:white">BaristaVille</h1>
</div>
<div class="col-1">
<a href="baristaHomePage.php" >
<h6 style="color:white">Home</h1>
</a>
</div>
<div class="col-1">
<a href="pendingOrdersPage.php" >
<h6 style="color:white">Pending Orders</h1>
</a>
</div>
<div class="col-6"></div>
<div class="col-2">
<h6 style="color:white">
Welcome Barista!
<a href="logoutController.php" style="align-right">Logout</a>
</h1>
</div>
</div>
</div>
</div>
<br>
<div class="container-fluid">
<h1>Bartisa Home</h1>
<p>
<a href="pendingOrdersPage.php">Make something </a>
or
<a href="logoutController.php"> go home</a>
</p>
</div>
</body>
</html>