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
+5 -5
View File
@@ -1,23 +1,23 @@
{% extends "common.html" %}
{% block title %}Create a vault · Flowers{% endblock %}
{% block title %}Create a bouquet · Flowers{% endblock %}
{% block menuoptions %}<a class="text-link" href="{{ url_for('flower_vase.index') }}">Sign in</a>{% endblock %}
{% block content %}
<section class="auth-layout">
<div class="intro">
<p class="eyebrow">New vault</p>
<h1>Create a vault</h1>
<p class="eyebrow">New bouquet</p>
<h1>Create a bouquet</h1>
<p>This uses the existing Flowers database structure so it remains readable by compatible installations.</p>
</div>
<form class="card form-card" action="{{ url_for('flower_vase.create') }}" method="post">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<h2>New vault</h2>
<h2>New bouquet</h2>
{% if message %}<p class="field-error">{{ message }}</p>{% endif %}
<label for="name">Username</label>
<input maxlength="31" id="name" name="name" type="text" pattern="[A-Za-z0-9_]+" autocomplete="username" required>
<label for="password">Password</label>
<input maxlength="43" id="password" name="password" type="password" pattern="[A-Za-z0-9_+/-]+" autocomplete="new-password" required>
<p class="field-help">Use Base64-compatible characters for legacy encryption compatibility.</p>
<button class="button primary" type="submit">Create vault</button>
<button class="button primary" type="submit">Create bouquet</button>
</form>
</section>
{% endblock %}