summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html3
-rw-r--r--templates/dashboard.html10
-rw-r--r--templates/exercises.html2
-rw-r--r--templates/override.html6
-rw-r--r--templates/session-complete.html2
-rw-r--r--templates/session.html2
-rw-r--r--templates/setup.html2
7 files changed, 15 insertions, 12 deletions
diff --git a/templates/base.html b/templates/base.html
index 472d827..4a73e76 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -4,6 +4,9 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HITO{% block title %}{% endblock %}</title>
+ <link rel="preconnect" href="https://fonts.googleapis.com">
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Besley:wght@600&family=IBM+Plex+Mono:wght@400;500&family=IBM+Plex+Sans:wght@400;500;700&display=swap">
<link rel="stylesheet" href="/static/css/hito.css">
</head>
<body>
diff --git a/templates/dashboard.html b/templates/dashboard.html
index da294ee..b8e9466 100644
--- a/templates/dashboard.html
+++ b/templates/dashboard.html
@@ -7,20 +7,20 @@
{% if ready %}
<div class="status ready">
- <h2>YOU ARE READY</h2>
+ <h2>You Are Ready</h2>
<p class="next-workout">Today you train <strong>Day {{ next_day }}: {{ next_day_name }}</strong>.</p>
- <a href="/session" class="btn-primary">BEGIN SESSION</a>
+ <a href="/session" class="btn-primary">Begin Session</a>
</div>
{% else %}
<div class="status recovering">
- <h2>RECOVERY IN PROGRESS</h2>
+ <h2>Recovery in Progress</h2>
<p class="days-remaining">
<span class="big-number">{{ days_remaining }}</span>
<span class="label">day{{ days_plural }} remaining</span>
</p>
<p class="next-date">Next session prescribed for <strong>{{ next_date }}</strong>.</p>
<p class="recovery-reason">{{ reason }}</p>
- <a href="/override" class="btn-warning">OVERRIDE RECOVERY</a>
+ <a href="/override" class="btn-warning">Override Recovery</a>
</div>
{% endif %}
@@ -32,7 +32,7 @@
<span class="history-date">{{ session.date }}</span>
<span class="history-day">Day {{ session.day }}: {{ session.day_name }}</span>
{% if session.override %}
- <span class="history-badge override">OVERRIDE</span>
+ <span class="history-badge override">Override</span>
{% endif %}
</div>
{% endfor %}
diff --git a/templates/exercises.html b/templates/exercises.html
index cd7aa54..d19a73c 100644
--- a/templates/exercises.html
+++ b/templates/exercises.html
@@ -48,7 +48,7 @@
</div>
{% endfor %}
- <a href="/" class="btn-secondary">RETURN TO DASHBOARD</a>
+ <a href="/" class="btn-secondary">Return to Dashboard</a>
</section>
{% endblock %}
diff --git a/templates/override.html b/templates/override.html
index 02b6a3c..10decb7 100644
--- a/templates/override.html
+++ b/templates/override.html
@@ -4,7 +4,7 @@
{% block content %}
<section class="override-page">
- <h2>OVERRIDE RECOVERY GATE</h2>
+ <h2>Override Recovery Gate</h2>
<div class="warning-block">
<p class="warning-text">{{ warning }}</p>
@@ -17,8 +17,8 @@
<form method="post" action="/override/confirm">
<div class="override-actions">
- <button type="submit" class="btn-danger">I UNDERSTAND. PROCEED.</button>
- <a href="/" class="btn-secondary">RETURN TO DASHBOARD</a>
+ <button type="submit" class="btn-danger">I understand. Proceed.</button>
+ <a href="/" class="btn-secondary">Return to Dashboard</a>
</div>
</form>
</section>
diff --git a/templates/session-complete.html b/templates/session-complete.html
index 8cd18b3..1297cea 100644
--- a/templates/session-complete.html
+++ b/templates/session-complete.html
@@ -33,7 +33,7 @@
<p class="recovery-reason">{{ recovery_reason }}</p>
</div>
- <a href="/" class="btn-primary">RETURN TO DASHBOARD</a>
+ <a href="/" class="btn-primary">Return to Dashboard</a>
</section>
{% endblock %}
diff --git a/templates/session.html b/templates/session.html
index c419697..7b5f3f4 100644
--- a/templates/session.html
+++ b/templates/session.html
@@ -66,7 +66,7 @@
</fieldset>
{% endfor %}
- <button type="submit" class="btn-primary">LOG SESSION</button>
+ <button type="submit" class="btn-primary">Log Session</button>
</form>
</section>
{% endblock %}
diff --git a/templates/setup.html b/templates/setup.html
index 3653c06..2a2613f 100644
--- a/templates/setup.html
+++ b/templates/setup.html
@@ -42,7 +42,7 @@
</label>
</div>
- <button type="submit" class="btn-primary">BEGIN TRAINING</button>
+ <button type="submit" class="btn-primary">Begin Training</button>
</form>
</section>
{% endblock %}
Copyright 2019--2026 Marius PETER