-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (26 loc) · 904 Bytes
/
index.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<link rel="stylesheet" href="css/main.css" type="text/css">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Lato">
<script type="text/javascript" src="js/jquery-2.0.3.min.js">
</script>
<script type="text/javascript" src="js/main.js">
</script>
<title>Check in</title>
</head>
<body>
<div class="nav"></div>
<div class="container">
<div class="title">
Welcome
</div>
<div class="text">
This site has been made for the tracking of members signing up for classes. Please register for access.
</div>
<div class="center group">
<button id="signin" class="button" onclick="location.href='signin.html'">Sign in</button> <button id="register" class="button" onclick="location.href='register.html'">Register</button>
</div>
</div>
</body>
</html>