-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (67 loc) · 1.85 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="css/main.css" />
<script src="js/jquery-3.3.1.slim.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<h1>D&D Monster Creator</h1>
<table>
<tr>
<td colspan="4">
<form autocomplete="off">
<label for="CR">Total CR: </label>
<input type="text" id="CR" value=0 />
<input type="checkbox" id="CRLock" />
<label for="CRLock">Lock</label>
</form>
</td>
</tr>
<tr>
<td colspan="2">
<form autocomplete="off">
<label for="OCR">Offensive CR: </label>
<input type="text" id="OCR" value=0 disabled />
<input type="checkbox" id="OCRLock" disabled />
<label for="OCRLock">Lock</label>
</form>
</td>
<td colspan="2">
<form autocomplete="off">
<label for="DCR">Defensive CR: </label>
<input type="text" id="DCR" value=0 disabled />
<input type="checkbox" id="DCRLock" disabled />
<label for="DCRLock">Lock</label>
</form>
</td>
</tr>
<tr>
<td>
<form autocomplete="off">
<label for="Damage">Damage: </label>
<input type="text" id="Damage" value=0 disabled />
</form>
</td>
<td>
<form autocomplete="off">
<label for="Attack">Attack: </label>
<input type="text" id="Attack" value=0 disabled />
</form>
</td>
<td>
<form autocomplete="off">
<label for="HP">HP: </label>
<input type="text" id="HP" value=0 disabled />
</form>
</td>
<td>
<form autocomplete="off">
<label for="AC: ">AC: </label>
<input type="text" id="AC" value=0 disabled />
</form>
</td>
</tr>
</table>
</body>
</html>