first commit

This commit is contained in:
Patrick
2026-05-01 19:31:44 +02:00
commit edf0441035
19 changed files with 1385 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<section class="auth">
<h1>Resend verification email</h1>
<div class="card">
<form method="post" action="/verify/resend">
<label>Email
<input type="email" name="email" required value="<%= email || '' %>" placeholder="you@example.com" />
</label>
<div class="flex end">
<button type="submit" class="btn">Send verification email</button>
</div>
</form>
</div>
<p class="small muted">If your email exists and is not verified yet, we will send a new verification link. Links expire after 24 hours.</p>
<p class="small"><a href="/login">Back to login</a></p>
</section>