QOL improvements
Build Images and Deploy / Update-PROD-Stack (push) Successful in 28s

This commit is contained in:
2026-02-28 01:14:50 -05:00
parent 79ee7064a8
commit bdb6d5ee25
11 changed files with 264 additions and 4 deletions
+29
View File
@@ -0,0 +1,29 @@
<%- include('../partials/header') %>
<div class="container-narrow">
<div class="card">
<h1 style="text-align: center; margin-bottom: 0.5rem;">Reset Password</h1>
<p style="text-align: center; color: var(--muted); margin-bottom: 1.5rem;">Choose a new password for <strong><%= username %></strong></p>
<% if (error) { %>
<div class="alert alert-danger"><%= error %></div>
<% } %>
<form method="POST" action="/auth/reset/<%= token %>">
<div class="form-group">
<label for="password">New Password</label>
<input type="password" id="password" name="password" class="form-control" required
minlength="6" autocomplete="new-password" autofocus>
<span class="form-hint">Minimum 6 characters</span>
</div>
<div class="form-group">
<label for="password_confirm">Confirm Password</label>
<input type="password" id="password_confirm" name="password_confirm" class="form-control" required
minlength="6" autocomplete="new-password">
</div>
<button type="submit" class="btn btn-primary" style="width: 100%;">Set New Password</button>
</form>
</div>
</div>
<%- include('../partials/footer') %>