feat: Implement a webpage for self-service password resets

This commit is contained in:
Ginger
2026-03-03 13:20:16 -05:00
parent da8833fca4
commit ffa3c53847
24 changed files with 797 additions and 122 deletions
+20 -11
View File
@@ -1,20 +1,29 @@
{% extends "_layout.html.j2" %}
{%- block head -%}
<link rel="stylesheet" href="/_continuwuity/resources/error.css">
{%- endblock -%}
{%- block title -%}
Server Error
🐈 Request Error
{%- endblock -%}
{%- block content -%}
<h1>
{%- match err -%}
{% else -%} 500: Internal Server Error
{%- endmatch -%}
</h1>
<pre class="k10y" aria-hidden>
      />  
      |  _  _|
     ` ミ_x
     /      |
    /  ヽ  
    │  | | |
 / ̄|   | | |
 | ( ̄ヽ__ヽ_)__)
 \二つ
</pre>
<div class="panel">
<h1>Request error<small aria-hidden>(︶^︶)</small></h1>
{%- match err -%}
{% when WebError::Render(err) -%}
<pre>{{ err }}</pre>
{% else -%} <p>An error occurred</p>
{%- endmatch -%}
<pre><code>{{ error }}</code></pre>
</div>
{%- endblock -%}