[Refactor] Large scale formatting/linting (#193)

All html files now prettier formatted and fixes for incompatible blocks applied

Co-authored-by: Tim Lorsbach <tim@lorsba.ch>
Reviewed-on: enviPath/enviPy#193
Co-authored-by: Tobias O <tobias.olenyi@envipath.com>
Co-committed-by: Tobias O <tobias.olenyi@envipath.com>
This commit is contained in:
2025-11-12 22:47:10 +13:00
committed by jebus
parent 12a20756d6
commit 21d30a923f
114 changed files with 10684 additions and 7009 deletions

View File

@ -3,31 +3,43 @@
{% block title %}enviPath - Reset Password{% endblock %}
{% block content %}
<!-- Title -->
<div class="mb-8">
<h2 class="text-3xl font-bold mb-2">Reset Password</h2>
<p class="text-base-content/70">Enter your email address and we'll send you a link to reset your password.</p>
</div>
<!-- Title -->
<div class="mb-8">
<h2 class="mb-2 text-3xl font-bold">Reset Password</h2>
<p class="text-base-content/70">
Enter your email address and we'll send you a link to reset your password.
</p>
</div>
<!-- Reset Password Form -->
<form method="post" class="space-y-4">
<!-- Reset Password Form -->
<form method="post" class="space-y-4">
{% csrf_token %}
<div class="form-control">
<label class="label" for="id_email">
<span class="label-text">Email</span>
</label>
<input type="email" id="id_email" name="email" placeholder="user@envipath.org"
class="input input-bordered w-full" required autocomplete="email">
<label class="label" for="id_email">
<span class="label-text">Email</span>
</label>
<input
type="email"
id="id_email"
name="email"
placeholder="user@envipath.org"
class="input input-bordered w-full"
required
autocomplete="email"
/>
</div>
<button type="submit" class="btn btn-primary w-full">Send Reset Link</button>
</form>
<button type="submit" class="btn btn-primary w-full">
Send Reset Link
</button>
</form>
<!-- Back to Sign In -->
<div class="mt-6 text-center text-sm text-base-content/70">
<p>Remember your password?
<a href="{% url 'login' %}" class="link link-primary">Sign in</a>
<!-- Back to Sign In -->
<div class="text-base-content/70 mt-6 text-center text-sm">
<p>
Remember your password?
<a href="{% url 'login' %}" class="link link-primary">Sign in</a>
</p>
</div>
</div>
{% endblock %}