This repository has been archived by the owner on Oct 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·65 lines (57 loc) · 1.88 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
require './common.php';
if ($_SESSION['school']) {
header('Location: home.php');
die('Redirecting to: home.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Registration | World Affairs Conference</title>
<meta name="description" content=""/>
<link rel="icon" href="favicon.ico" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<script src="js/google_analytics.js"></script>
<link rel="canonical" href="https://world.ac/" />
</head>
<body>
<?php include_once 'navbar.php' ?>
<div class="container container-main">
<div class="alert alert-info" role="alert">
<span class="fa fa-info-circle"></span> Registraiton is closed! Unfortunately, you cannot register any more students for WAC.
</div>
<div>
<h1>World Affairs Conference Online Registration</h1>
<h2>Registration is closed: come back when WAC 2018 is ready!</h2>
</div>
</div>
</body>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript">
/*
$("#password").change(function() {
validatePassword();
});
$("#confirm_password").change(function() {
validatePassword();
});
function validatePassword(){
if($("#password").val() != $("#confirm_password").val()) {
$("#password_status").html("<span class='fa fa-remove'></span> Passwords don't match!");
$("#password_status").attr("class", "text-danger");
}
else {
$("#password_status").html("<span class='fa fa-check'></span> Passwords match!");
$("#password_status").attr("class", "text-success");
}
}
*/
</script>
</html>