-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (71 loc) · 3.27 KB
/
index.html
File metadata and controls
86 lines (71 loc) · 3.27 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ASCIIWar</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link href="html/css/bootstrap.css" rel="stylesheet">
<!--<style>
body {
padding-top: 40px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<link href="css/doccom.css" rel="stylesheet">
<link href="css/docindex.css" rel="stylesheet">-->
<link href="html/css/app.css" rel="stylesheet">
<link rel="shortcut icon" href="favicon.ico">
</head>
<body>
<a class="donate-link" onclick="
var open = require('open');
open('http://asciiwar.com/donate.html', function () {
});" href="">Support ASCIIWar!</a>
<a class="source-link" onclick="
var open = require('open');
open('https://github.com/IndieRobert/ASCIIWar.git', function () {
});" href="">Source</a>
<a class="reddit-link" onclick="
var open = require('open');
open('http://www.reddit.com/r/ASCIIWar/', function () {
});" href="">Sub-Reddit</a>
<div class="title">
<h1>ASCIIWar</h1>
<h4>Free Open-Source MOBA-RTS in a SandBox Fantasy War.</h4>
</div>
<div id="top" >
<div id="login">
<div class="hero-unit">
<h3 class="explain">Start Playing:</h3>
<h6 class="explain">Fill the username and password fields and click on 'Register' if you're a newcomer.</h6>
<form>
<div> <input id="login-username" pattern="[^;]*" type="text" name="name" placeholder="username"> </div>
<div> <input id="login-password" pattern="[^;]*" type="password" name="name" placeholder="password"> </div>
<div> <a id="login-btn" class="btn btn-small" href="javascript:login.login()">Login</a> <a class="btn btn-small" href="javascript:login.register()">Register</a> </div>
<div id="flash-login"></div>
</form>
</div>
</div>
</div>
<script src="html/js/jquery.js"></script>
<script src="html/js/bootstrap-transition.js"></script>
<script src="html/js/bootstrap-alert.js"></script>
<script src="html/js/bootstrap-modal.js"></script>
<script src="html/js/bootstrap-dropdown.js"></script>
<script src="html/js/bootstrap-scrollspy.js"></script>
<script src="html/js/bootstrap-tab.js"></script>
<script src="html/js/bootstrap-tooltip.js"></script>
<script src="html/js/bootstrap-popover.js"></script>
<script src="html/js/bootstrap-button.js"></script>
<script src="html/js/bootstrap-collapse.js"></script>
<script src="html/js/bootstrap-carousel.js"></script>
<script src="html/js/bootstrap-typeahead.js"></script>
<script type="text/javascript" src="html/js/seedrandom.js"></script>
<script type="text/javascript" src="html/js/mustache.js"></script>
<script type="text/javascript" src="html/js/main/asciiwar.js"></script>
<script type="text/javascript" src="html/js/main/login.js"></script>
<script type="text/javascript" src="html/js/main/index.js"></script>
</body>
</html>