24 lines
1.0 KiB
HTML
24 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Set Up Coach Clone</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body class="auth-page">
|
|
<main class="auth-panel">
|
|
<div class="brand auth-brand"><span class="brand-mark"></span><span>Coach Clone</span></div>
|
|
<h1>First Launch</h1>
|
|
<p>Create the local app login. Garmin credentials are configured after this.</p>
|
|
{% if error %}<p class="alert">{{ error }}</p>{% endif %}
|
|
<form method="post" action="/setup" class="stack">
|
|
<label>Username <input name="username" autocomplete="username" required></label>
|
|
<label>Password <input name="password" type="password" autocomplete="new-password" required></label>
|
|
<label>Confirm <input name="confirm_password" type="password" autocomplete="new-password" required></label>
|
|
<button type="submit">Create app login</button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|