-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
54 lines (44 loc) · 1.13 KB
/
index.php
File metadata and controls
54 lines (44 loc) · 1.13 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
require_once('scripts/user.php');
$user = new User();
if(!$user->isLoggedIn()){
header("location: //brookes-sems.epizy.com/login");
exit();
}
else{
}
?>
<!DOCTYPE html>
<html>
<head>
<title>SEMS</title>
<link rel="stylesheet" href="../styles/main.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="//brookes-sems.epizy.com/scripts/menu.js" type="text/javascript"></script>
<script src="/scripts/transactions.js"></script>
<style>
div#transaction-area {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
width: 100%;
height: auto;
}
</style>
</head>
<body>
<menu-bar></menu-bar>
<div id="content">
<div class="section">
<div class="post">
<h1>Recents.</h1>
<h3>Most Recent Transactions.</h3>
<div id="transaction-area">
<transactions-list></transactions-list>
</div>
</div>
</div>
</div>
</body>
</html>