-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
37 lines (28 loc) · 704 Bytes
/
base.html
File metadata and controls
37 lines (28 loc) · 704 Bytes
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
<!DOCTYPE html>
<html>
<script src="script.js"></script>
<head>
<link rel="stylesheet" href="styles.css">
</form>
</head>
<body>
Do you have the year 3 pass? (Yes/No):
<input id="year3Pass">
<br><br>
DLC or Base:
<input id="operatorType">
<br><br>
Current renown:
<input id="currentRenown" type="number" step="1" pattern="\d+">
<br><br>
Average renown per game:
<input id="averageRenown" type="number" step="1" pattern="\d+">
<br><br>
Average time per game:
<input id="averageTime" type="number" step="1" pattern="\d+">
<br><br>
<button type="button" onclick="compute()">Submit</button>
<p id="result"></p>
<script src="script.js"></script>
</body>
</html>