20 lines
651 B
HTML
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 %}
|