-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (60 loc) · 2.04 KB
/
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
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
<!doctype html>
<html>
<head>
<title>Demon Souls Death Count</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" media="screen" type="text/css" href="css/colorpicker.css" />
</head>
<body>
<div id="tallycounter">
<p id="count">0</p>
<div id="themes">
</div>
<hr/>
<h1>Cookie stuff goes here</h1>
<h4>save profile</h4>
<form action="javascript: $.fn.setCookie();">
<input type="text" placeholder="game-1" id="saveCookieProfile" name="fname">
<input type="submit" value="Submit">
</form>
<h4>load profile</h4>
<form action="javascript: $.fn.getCookie();">
<input type="text" placeholder="game-1" id="loadCookieProfile" name="fname">
<input type="submit" value="Submit">
</form>
<h4>reset cookie</h4>
<button id="cookiereset" type="button">Reset Cookie (if needed)</button>
<hr/>
<h1>Set the counter to your own start number</h1>
<form action="javascript: $.fn.updateCounterFromTextInput();">
<input type="number" placeholder="1" id="counterValue" name="fname">
<input type="submit" value="Submit">
</form>
</div>
<hr/>
<hr/>
<div id="changelog">
<h1>Changelog</h1>
<p>version 0.4: <br/>- Added Cookies so it remembers the count<br/>
- Added input box for easy high number navigation<br/>
- Added custom cookie values for save/loading<br/>
</p>
</div>
<hr/>
<div id="todolist">
<h1>To-do</h1>
<p><del>- Added Cookies so it remembers the count</del><br/>
<del>- Add input form so you can easily go to the wanted number</del><br/>
<del>- A form that let's users create their own id'ed cookies (for save/load purpose)</del><br/>
- Output a list of all saved cookies/profiles for fast loading<br/>
- Implement a design <br/>
- Implement custom color schemes<br/>
<del>- Clean up the code (it's not that much)</del>
</p>
</div>
<script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="js/jquery.cookie.js"></script>
<script type="text/javascript" src="js/colorpicker.js"></script>
<script type="text/javascript" src="js/init.js"></script>
</body>
</html>