removed a few labels and unused files

This commit is contained in:
2026-07-18 21:16:07 +02:00
parent 4a5ebc726e
commit 882bf0d409
68 changed files with 24 additions and 15796 deletions
+4 -4
View File
@@ -1,13 +1,13 @@
{% extends "common.html" %}
{% block title %}Sign in · Flowers{% endblock %}
{% block menuoptions %}
<a class="text-link" href="{{ url_for('flower_vase.create') }}">Create a vault</a>
<a class="text-link" href="{{ url_for('flower_vase.create') }}">Create a bouquet</a>
{% endblock %}
{% block content %}
<section class="auth-layout">
<div class="intro">
<p class="eyebrow">Private vault</p>
<h1>Your credentials</h1>
<p class="eyebrow">Private bouquet</p>
<h1>Your flowers</h1>
<p>Sign in to open your encrypted records.</p>
</div>
<form class="card form-card" action="{{ url_for('flower_vase.application') }}" method="post">
@@ -18,7 +18,7 @@
<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>
<button class="button primary" type="submit">Open bouquet</button>
</form>
</section>
{% endblock %}