summaryrefslogtreecommitdiff
path: root/app/templates/workout/record.html
diff options
context:
space:
mode:
authorstilbruch <stilbruch@protonail.com>2022-04-06 19:11:30 -0500
committerstilbruch <stilbruch@protonail.com>2022-04-06 19:11:30 -0500
commit05d7b80e092f9a3699fedfb08b85812d57cef0e8 (patch)
treec431ed2797d437fc910a7f0f8bbec107394d8576 /app/templates/workout/record.html
parent0ff4b0d4fdbadef3d1dcc5320e28d2026fd68a65 (diff)
downloadStrengthy-05d7b80e092f9a3699fedfb08b85812d57cef0e8.tar.xz
Strengthy-05d7b80e092f9a3699fedfb08b85812d57cef0e8.zip
Start record workout
Diffstat (limited to 'app/templates/workout/record.html')
-rw-r--r--app/templates/workout/record.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/app/templates/workout/record.html b/app/templates/workout/record.html
new file mode 100644
index 0000000..1a544fc
--- /dev/null
+++ b/app/templates/workout/record.html
@@ -0,0 +1,37 @@
+{% extends 'base/layout.html' %}
+
+{% block content %}
+
+<div class="continer">
+ <div class="columns is-centered">
+ <div class="column">
+ <h1 class="title is-2">Leg Day</h1>
+ <div class="box">
+ <div class="tabs is-fullwidth">
+ <ul>
+ <li>
+ <a>
+ <span class="icon"><i class="fas fa-angle-left" aria-hidden="true"></i></span>
+ <span>Left</span>
+ </a>
+ </li>
+ <li>
+ <a>
+ <span class="icon"><i class="fas fa-angle-up" aria-hidden="true"></i></span>
+ <span>Up</span>
+ </a>
+ </li>
+ <li>
+ <a>
+ <span>Right</span>
+ <span class="icon"><i class="fas fa-angle-right" aria-hidden="true"></i></span>
+ </a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ </div>
+ </div>
+</div>
+
+{% endblock %}