2023-08-27 13:26:06 +00:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
?>
|
2022-10-15 11:22:08 +00:00
|
|
|
<?= helper('form') ?>
|
2024-04-28 16:39:01 +00:00
|
|
|
<?= $this->extend(config('Auth')->views['layout']) ?>
|
2022-10-15 11:22:08 +00:00
|
|
|
|
|
|
|
<?= $this->section('title') ?>
|
|
|
|
<?= lang('Auth.set_password') ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
|
|
|
<form action="<?= url_to('magic-link-set-password') ?>" method="POST" class="flex flex-col w-full gap-y-4">
|
|
|
|
<?= csrf_field() ?>
|
|
|
|
|
2024-05-09 17:55:41 +00:00
|
|
|
<x-Forms.Field
|
2022-10-15 11:22:08 +00:00
|
|
|
name="new_password"
|
2024-01-24 16:48:23 +00:00
|
|
|
label="<?= esc(lang('Auth.password')) ?>"
|
2022-10-15 11:22:08 +00:00
|
|
|
type="password"
|
2024-05-09 17:55:41 +00:00
|
|
|
isRequired="true"
|
2022-10-15 11:22:08 +00:00
|
|
|
inputmode="text"
|
|
|
|
autocomplete="new-password" />
|
|
|
|
|
2024-05-09 17:55:41 +00:00
|
|
|
<x-Button variant="primary" type="submit" class="self-end"><?= lang('Auth.set_password') ?></x-Button>
|
2022-10-15 11:22:08 +00:00
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|