2025-03-25 20:32:26 +00:00
|
|
|
{% extends "common.html" %}
|
2026-07-18 20:27:19 +02:00
|
|
|
{% block title %}Sign in · Flowers{% endblock %}
|
|
|
|
|
{% block menuoptions %}
|
|
|
|
|
<a class="text-link" href="{{ url_for('flower_vase.create') }}">Create a vault</a>
|
|
|
|
|
{% endblock %}
|
2025-03-25 20:32:26 +00:00
|
|
|
{% block content %}
|
2026-07-18 20:27:19 +02:00
|
|
|
<section class="auth-layout">
|
|
|
|
|
<div class="intro">
|
2026-07-18 21:00:33 +02:00
|
|
|
<p class="eyebrow">Private vault</p>
|
|
|
|
|
<h1>Your credentials</h1>
|
|
|
|
|
<p>Sign in to open your encrypted records.</p>
|
2026-07-18 20:27:19 +02:00
|
|
|
</div>
|
|
|
|
|
<form class="card form-card" action="{{ url_for('flower_vase.application') }}" method="post">
|
|
|
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
|
|
|
|
|
<input type="hidden" name="action" value="login">
|
|
|
|
|
<h2>Sign in</h2>
|
|
|
|
|
<label for="name">Username</label>
|
|
|
|
|
<input id="name" name="name" type="text" autocomplete="username" placeholder="{{ name_suggestion }}" required autofocus>
|
|
|
|
|
<label for="password">Password</label>
|
|
|
|
|
<input id="password" name="password" type="password" autocomplete="current-password" placeholder="{{ pwd_suggestion }}" required>
|
|
|
|
|
<button class="button primary" type="submit">Open vault</button>
|
|
|
|
|
</form>
|
|
|
|
|
</section>
|
|
|
|
|
{% endblock %}
|