-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (83 loc) · 2.3 KB
/
index.html
File metadata and controls
83 lines (83 loc) · 2.3 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
<html>
<head>
<title>Character Stats</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.min.js"></script>
<script type="text/javascript" src="/characterStats/characterStats.js"></script>
<link rel="stylesheet" href="characterStats.css">
</head>
<body>
<div id="login-window">
<a href="#" id="login">Login to See your Stats</a>
</div>
<div id="characteryear">
<select id="year">
<option value=0>Select Year</option>
</select>
</div>
<div id="data">
<div id="characterDisplay">
<div>
<div id="characterName">
</div>
<div id="characterMinutes">
</div>
<div id="characterSessions">
</div>
</div>
<div id="information">
<div id="combat">
<h2>Damage Taken from Players</h2>
<div id="from">
</div>
<h2>Damage Dealt to Players</h2>
<div id="to">
</div>
<h2>Deaths</h2>
<div id="deaths">
</div>
<h2>Kills</h2>
<div id="kills">
</div>
</div>
<div id="industry">
<h2>Jobs Started</h2>
<div id="start">
</div>
<h2>Jobs Completed</h2>
<div id="complete">
</div>
<h2>Reprocessing</h2>
<div id="reprocess">
</div>
</div>
<div id="mining">
<h2>Mined</h2>
<div id="miningAmount">
</div>
</div>
<div id="travel">
<h2>Distance Traveled</h2>
<div id="distance">
</div>
<h2>Jumps</h2>
<div id="jumps">
</div>
<h2>Warps</h2>
<div id="warps">
</div>
<h2>Docking</h2>
<div id="docks">
</div>
</div>
<h2>Modules Activated</h2>
<div id="activation">
</div>
</div>
</div>
</div>
</body>
</html>