INITIAL COMMIT
This commit is contained in:
23
templates/setup.html
Normal file
23
templates/setup.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user