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
+2 -2
View File
@@ -13,7 +13,7 @@
<span class="brand-mark" aria-hidden="true"></span>
<span>Flowers</span>
</a>
<nav class="nav-actions" aria-label="Vault actions">
<nav class="nav-actions" aria-label="Bouquet actions">
{% block menuoptions %}{% endblock %}
</nav>
</header>
@@ -32,6 +32,6 @@
{% block content %}{% endblock %}
</main>
<footer>Private by design. Stored in your existing Flowers vault.</footer>
<footer>Private by design. Stored in your existing Flowers bouquet.</footer>
</body>
</html>
+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 %}
+1 -1
View File
@@ -10,7 +10,7 @@
{% block content %}
<section class="editor-layout">
<div>
<p class="eyebrow">{% if flower.organization %}New version{% else %}New credential{% endif %}</p>
<p class="eyebrow">{% if flower.organization %}New version{% else %}New flower{% endif %}</p>
<h1>{% if flower.organization %}Edit entry{% else %}Add an entry{% endif %}</h1>
<p class="muted">Saving creates a new version. Your historical rows remain untouched.</p>
</div>
+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 %}
+2 -3
View File
@@ -1,5 +1,5 @@
{% extends "common.html" %}
{% block title %}Your vault · Flowers{% endblock %}
{% block title %}Your bouquet · Flowers{% endblock %}
{% block menuoptions %}
<form action="{{ url_for('flower_vase.application') }}" method="post">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
@@ -20,8 +20,7 @@
{% block content %}
<section class="vault-header">
<div>
<p class="eyebrow">Active entries</p>
<h1>Your vault</h1>
<h1>Your bouquet</h1>
</div>
<label class="search-field" for="search">
<span class="sr-only">Search entries</span>
+3 -3
View File
@@ -4,13 +4,13 @@
{% block content %}
<section class="auth-layout">
<div class="intro">
<p class="eyebrow">Vault security</p>
<p class="eyebrow">Bouquet security</p>
<h1>Change password</h1>
<p>Every existing encrypted field will be rewritten with the new legacy-compatible key.</p>
</div>
<form class="card form-card" action="{{ url_for('flower_vase.update_pwd') }}" method="post">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<h2>Vault credentials</h2>
<h2>Bouquet flowers</h2>
{% if message %}<p class="field-error">{{ message }}</p>{% endif %}
<label for="name">Username</label>
<input id="name" name="name" type="text" autocomplete="username" required>
@@ -18,7 +18,7 @@
<input id="old-password" name="old_password" type="password" autocomplete="current-password" required>
<label for="new-password">New password</label>
<input maxlength="43" id="new-password" name="new_password" type="password" pattern="[A-Za-z0-9_+/-]+" autocomplete="new-password" required>
<button class="button primary" type="submit">Re-encrypt vault</button>
<button class="button primary" type="submit">Re-encrypt bouquet</button>
</form>
</section>
{% endblock %}
+2 -2
View File
@@ -5,7 +5,7 @@
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<input type="hidden" name="action" value="list">
<input type="hidden" name="filter" value="{{ filter|default('') }}">
<button class="button ghost compact" type="submit">Back to vault</button>
<button class="button ghost compact" type="submit">Back to bouquet</button>
</form>
{% endblock %}
{% block content %}
@@ -13,7 +13,7 @@
<div class="detail-heading">
<span class="entry-icon large" aria-hidden="true">{{ flower.organization[:1]|upper }}</span>
<div>
<p class="eyebrow">Credential</p>
<p class="eyebrow">Flower</p>
<h1>{{ flower.organization }}</h1>
{% if flower.dateCreated not in ('STORED', 'FAILED') %}<p class="muted">Version from {{ flower.dateCreated[:10] }}</p>{% endif %}
</div>