-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
template.html
47 lines (42 loc) · 1.85 KB
/
template.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TEMPLATE</title>
<meta name="description" content="A simple HTML5 Template for new projects.">
<meta name="author" content="SitePoint">
<meta property="og:title" content="Albion Crafting Calculator">
<meta property="og:type" content="website">
<meta property="og:description" content="A quick and easy crafting calculator for those using the Albion Online Data Project.">
<link rel="icon" href="/favicon.ico">
<link rel="stylesheet" href="table.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="recipetable.js"></script>
<script src="names.js"></script>
<script src="adt.js"></script>
<script src="CHANGEMEMEMEME.js"></script>
</head>
<body>
<div id="navbararea"></div><br>
<h2>CHANGE ME</h2>
<label for="locations">City</label>
<select name="locations" id="locations">
<option value="Thetford">Thetford</option>
<option value="Martlock">Martlock</option>
<option value="Fort Sterling">Fort Sterling</option>
<option value="Bridgewatch">Bridgewatch</option>
<option value="Lymhurst">Lymhurst</option>
<option value="Caerleon">Caerleon</option>
</select>
<label for="rrr">Resource Return Rate</label>
<input type="number" step="0.001" name="rrr" id="rrr" min=0 max=1 value="0.152">
<label for="nutri">Nutrition Cost</label>
<input type="number" name="nutri" id="nutri" min=0 max=9999 value="500">
<label for="prem">Premium</label>
<input type="checkbox" name="prem" id="prem" checked>
<button onclick="updateTable()">Update</button>
<button onclick="hideUnprofitable()">Hide Unprofitable</button>
<div id="tablearea" style="overflow:auto;"></div>
</body>
</html>