-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (76 loc) · 3 KB
/
index.html
File metadata and controls
84 lines (76 loc) · 3 KB
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
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Wilks Formula</title>
<meta name="Joshua Serpis" content="name">
<meta name="A formua in which can be used to calculate a strength athletes true strength level " content="description here">
<meta name="keywords" content="keywords,here">
<link rel="stylesheet" href="stylesheet.css">
<script src="formula.js"></script>
</head>
<body>
<div id="background">
<div id="title">
<h1>Strength sports calculations</h1>
</div>
<div id="points">
<h2 id="display-glp"></h2>
<h3 id="display-dots"></h3>
</div>
</div>
<div id="form-card">
<div id="inner-form">
<div class="field">
<label for="total" class="label-number">Total</label>
<input type="number" id="total" name="total" min="0" step="2.5" oninput="calc()">
</div>
<div class="field">
<label for="bodyweight" class="label-number">Bodyweight</label>
<input type="number" id="bodyweight" name="bodyweight" min="0" step="0.1" oninput="calc()">
</div>
<div class="radio-group">
<div class="radio-field">
<input type="radio" id="kilograms" name="units" value="kg" onchange="calc()" checked>
<label for="kilograms" class="label-radio">Kilos</label>
</div>
<div class="radio-field">
<input type="radio" id="pounds" name="units" value="lbs" onchange="calc()">
<label for="pounds" class="label-radio">Pounds</label>
</div>
</div>
<div class="radio-group">
<div class="radio-field">
<input type="radio" id="men" name="sex" value="M" onchange="calc()" checked>
<label for="men" class="label-radio">Men</label>
</div>
<div class="radio-field">
<input type="radio" id="women" name="sex" value="F" onchange="calc()">
<label for="women" class="label-radio">Women</label>
</div>
</div>
<div class="radio-group">
<div class="radio-field">
<input type="radio" id="raw" name="equipment" value="Raw" onchange="calc()" checked>
<label for="raw" class="label-radio">Raw</label>
</div>
<div class="radio-field">
<input type="radio" id="single" name="equipment" value="Single-ply" onchange="calc()">
<label for="single" class="label-radio">Single-ply</label>
</div>
</div>
<div class="radio-group last">
<div class="radio-field">
<input type="radio" id="sbd" name="event" value="SBD" onchange="calc()" checked>
<label for="sbd" class="label-radio">3-Lift</label>
</div>
<div class="radio-field">
<input type="radio" id="b" name="event" value="B" onchange="calc()">
<label for="b" class="label-radio">Bench</label>
</div>
</div>
<!-- <input type="button" value="Calculate" id="calculate" onclick="calc()"> -->
</div>
</div>
</body>
</html>