29 lines
589 B
Plaintext
29 lines
589 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/forgot-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"
|
|
spellcheck="false"
|
|
autocomplete="off"
|
|
autocorrect="off"
|
|
autocapitalize="off"
|
|
/>
|
|
</label>
|
|
<button class="btn btn-primary self-end">
|
|
Request Password Reset
|
|
</button>
|
|
</form>
|
|
}
|