blob: 3653c0689216f5dd457dfc8fca721f8bc25ac8ea (
plain)
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
|
{% extends "base.html" %}
{% block title %} — Setup{% endblock %}
{% block content %}
<section class="setup">
<h2>Begin</h2>
<p class="instruction">
Select your training experience level. This determines your starting weights.
The system will correct them rapidly through training — err on the side of
caution. Ego has no place here.
</p>
<form method="post" action="/setup/submit">
<div class="level-choices">
<label class="level-choice">
<input type="radio" name="level" value="beginner" checked>
<div class="choice-card">
<span class="choice-title">NOVICE</span>
<span class="choice-desc">Under 1 year of serious training.<br>
Learning proper form and building base strength.</span>
</div>
</label>
<label class="level-choice">
<input type="radio" name="level" value="intermediate">
<div class="choice-card">
<span class="choice-title">INTERMEDIATE</span>
<span class="choice-desc">1–3 years of consistent training.<br>
Comfortable with compound movements under load.</span>
</div>
</label>
<label class="level-choice">
<input type="radio" name="level" value="advanced">
<div class="choice-card">
<span class="choice-title">ADVANCED</span>
<span class="choice-desc">3+ years of dedicated training.<br>
Near or past initial strength plateaus.</span>
</div>
</label>
</div>
<button type="submit" class="btn-primary">BEGIN TRAINING</button>
</form>
</section>
{% endblock %}
{% block quote %}
<blockquote>
“The first step in any rational endeavor is to identify the facts of reality
relevant to one’s purpose.”
<cite>— Mike Mentzer</cite>
</blockquote>
{% endblock %}
|