-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
60 lines (51 loc) · 2.37 KB
/
home.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
50
51
52
53
54
55
56
57
58
59
<?php
//include both the dbconnect and sescheck files
require('./conf/dbconnect.php');
require('./conf/sescheck.php');
?>
<html>
<head>
<title>Home ~ HackPanel</title>
<link rel="stylesheet" href="./css/main.css">
<link rel="shortcut icon" href="./img/favicon.png" type="image/x-icon">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-color--grey-100">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">HackPanel: BullHacks 2018</span>
<div class="mdl-layout-spacer"></div>
<nav class="mdl-navigation">
<!-- <form action="logout.php">
<input type="submit" value="Log Out">
<button id="btnLogout" class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored" type="submit">Log Out</button>
</form> -->
<!-- Right aligned menu below button -->
<button id="menu-lower-right" class="mdl-button mdl-js-button mdl-button--icon">
<i class="material-icons">more_vert</i>
</button>
<ul class="mdl-menu mdl-menu--bottom-right mdl-js-menu mdl-js-ripple-effect"
for="menu-lower-right">
<a class="mdl-menu__item" href="./logout.php">Log Out</a>
<a class="mdl-menu__item" href="./settings.php">Settings</a>
<a class="mdl-menu__item" href="https://airtable.com/shrCr68AzwBT4XyQD" target="_blank">Found a Bug?</a>
</ul>
</nav>
</div>
</header>
<div class="mdl-layout__drawer">
<img class="mdl-layout-title logo" src="./img/bullhackswideborder.png" />
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="./home.php">Home</a>
<a class="mdl-navigation__link" href="./attendees.php">Attendees</a>
<a class="mdl-navigation__link" href="./timetable.php">Timetable</a>
<a class="mdl-navigation__link" href="./sponsors.php">Sponsors</a>
<!-- <a class="mdl-navigation__link" href="./otherstuff.php">Other Stuff</a> -->
</nav>
</div>
<div class="section-heading"><h3>Announcements</h3></div>
<div class="mdl-cell mdl-cell--12-col">[INSERT RSS FEED HERE]</div>
</div>
</body>
</html>