Files
mywhoosh2garmin/app/web/templates/login.html
Bastian Wagner f7b04337ce auth für user
2026-08-15 21:34:40 +02:00

20 lines
651 B
HTML

{% extends "base.html" %}
{% block title %}Login - MyWhoosh Garmin Sync{% endblock %}
{% block content %}
<h1>Admin Login</h1>
<div class="card">
{% if error %}
<p class="error">{{ error }}</p>
{% endif %}
<form method="post" action="/login" class="stacked-form">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<label for="password">Password</label>
<input type="password" id="password" name="password" required autofocus>
<button type="submit">Log in</button>
</form>
</div>
<p><a href="/account-login">Log in with your MyWhoosh or Garmin account instead</a></p>
{% endblock %}