-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
45 lines (37 loc) · 1.69 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
<?php
include("includes.php");
?>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<link rel="stylesheet" type="text/css" href="campaign.css"/>
<script src="js/campaign.js"></script>
<title>The Campaign</title>
</head>
<body>
<div id="gameboard">
<div id="game_heading">Welcome to The Campaign</div>
<div id="left_side_half">
<h2>Create New Account</h2>
<input id="signup_email" type="text" placeholder="Email" class="signup_input"/>
<input id="signup_name" type="text" placeholder="Character Name" class="signup_input"/>
<input id="signup_password" type="password" placeholder="Password" class="signup_input"/>
<input id="agree_to_terms_of_service" type="checkbox"/> I agree to the <a href="termsofservice.html">Terms of Service</a>
<button id="create_account_button">Create Account</button>
</div>
<div id="right_side_half">
<h2>Sign In</h2>
</div>
<div style="clear:both;"></div>
<div id="full_width"></div>
<div style="clear:both;"></div>
<div id="left_side_small" style="display:none;">
</div>
<div id="right_side_large" style="display:none;">
</div>
<div style="clear:both;"></div>
</div>
</body>
</html>