20 lines
475 B
Plaintext
20 lines
475 B
Plaintext
package auth
|
|
|
|
templ ResetPasswordComp() {
|
|
<form
|
|
class="max-w-xl px-2 mx-auto flex flex-col gap-4 h-full justify-center"
|
|
hx-post="/api/auth/reset-password"
|
|
hx-swap="none"
|
|
>
|
|
<h2 class="text-6xl mb-10">
|
|
Reset Password
|
|
</h2>
|
|
<label class="input input-bordered flex items-center gap-2">
|
|
<input type="email" class="grow" placeholder="E-Mail" name="email"/>
|
|
</label>
|
|
<button class="btn btn-primary self-end">
|
|
Request Password Reset
|
|
</button>
|
|
</form>
|
|
}
|