-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.php
More file actions
64 lines (64 loc) · 2.53 KB
/
index.php
File metadata and controls
64 lines (64 loc) · 2.53 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
55
56
57
58
59
60
61
62
63
64
<?php
//Login
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="assets/css/reset.css" />
<link rel="stylesheet" type="text/css" href="assets/css/login.css" />
<link rel="stylesheet" type="text/css" href="assets/js/jquery-ui-aristo/css/aristo/jquery-ui-1.8rc3.custom.css" />
<script type="text/javascript" src="assets/js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="assets/js/jquery-ui.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.tipsy.js"></script>
<script type="text/javascript" src="assets/js/jquery.placeholder.js"></script>
<title>KRUI DJ</title>
</head>
<body>
<div id="login">
<div id="logo"><img alt="KRUI DJ" src="assets/images/app_logo.png" /><br /><noscript>Error: Please verify your browser has JavaScript enabled before logging in.</noscript></div>
<div id="form">
<form id="auth" name="auth" method="post" action="<?php echo $PHP_SELF; ?>">
<p>
<input name="username" type="text" id="username" placeholder="Username"/>
</p>
<p>
<input name="password" type="password" id="password" placeholder="Password"/>
</p>
<p>Select a studio:
<select id="select_studio" name="studio">
<option value="main">KRUI 89.7FM</option>
<option value="lab">The Lab</option>
</select>
</p>
<br/>
<a id="login_button">Login</a> <a id="request_button">Request Access</a>
</form>
</div>
<div id="request">
<form id="request_form">
<p>Need a new staff account or having trouble getting in? Fill out the form below.</p><br/>
<p><input name="firstname" type="text" id="request_firstname" placeholder="First name"/>
<input name="lastname" type="text" id="request_lastname" placeholder="Last name"/>
<input name="email" type="text" id="request_email" placeholder="Email"><br/>
Semester:
<select id="request_semester" name="semester">
<option value="Fall">Fall</option>
<option value="Spring">Spring</option>
<option value="Summer">Summer</option>
</select>
<select id="request_year" name="year">
<?php $year = date('o', time()); ?>
<option value="<?php echo($year);?>"><?php echo($year);?></option>
<option value="<?php echo($year + 1);?>"><?php echo($year + 1);?></option>
</select>
</p>
<div id="recaptcha"></div>
</form>
</div>
</div>
<script type="text/javascript" src="assets/js/login.js"></script>
<script type="text/javascript" src="http://www.google.com/recaptcha/api/js/recaptcha_ajax.js"></script>
</body>
</html>