-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contract Solver</title>
<link rel="stylesheet" href="./style.css" />
<script src="./utils.js"></script>
</head>
<body>
<header>
<h1>Bitburner Contract Solver</h1>
</header>
<main>
<select name="type" id="type">
<option value="" disable>Choose task …</option>
</select>
<textarea name="task" id="task" cols="50" rows="10" placeholder="Insert task input data here"></textarea>
<button id="trigger">> Solve</button>
<div id="result" class="content" title="Click to copy"></div>
</main>
<footer>
<p>
Created by <a href="https://github.com/devmount">@devmount</a>
for <a href="https://danielyxie.github.io/bitburner/" target="_blank">Bitburner</a> players
</p>
<p class="text-gray">
Based on <a href="https://github.com/bitburner-official/bitburner-src/blob/dev/src/data/codingcontracttypes.ts">codingcontracttypes.ts</a>
</p>
</footer>
<script src="./app.js"></script>
</body>
</html>