-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
26 lines (26 loc) · 822 Bytes
/
Copy pathindex.php
File metadata and controls
26 lines (26 loc) · 822 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Expensify Go</title>
<link rel="stylesheet" href="css/expensify_app.css" />
<script type="text/javascript" src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/expensify_app.js"></script>
</head>
<body>
<div id="header">
<a id="title" href="/">
<h2>Expensify</h2><h2 class="color_me">Go</h2>
</a>
<nav class="hide">
<span id="username"></span> | <button type="button" id="logout">Logout</button>
</nav>
</div>
<div id="content">
<?php
require_once 'login.php';
require_once 'table.php';
?>
</div>
</body>
</html>