-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php~
49 lines (34 loc) · 1019 Bytes
/
index.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
<?php // signup.php
include 'accesscontrol.php';
?>
<!DOCTYPE>
<head>
<title>Backpack - Home</title>
<link rel="stylesheet" href="stylesheet.css"/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
</head>
</script>
</head>
<html>
<body>
<header>
<a href="" >
<img id="logo" src="img/backpack_logo.png" alt="logo" />
</a>
<form id="returning_user" action="logout.php" method="post" enctype="text/plain">
<input id="login_button" type="submit" value="Log Out" />
<a href="signup.php">New user?</a>
</form>
</header>
<div id="slides">
<div class="slide" id="s1">
<div id="s1_home">
<p>Hey <?=$username?>,</p>
<p>The Backpack App is still under construction. <br>We will have iPhone and Android applications up and running in no time. Until then, sit back and enjoy your summer break!</p>
</div>
</div>
</div>
</body>
</html>