/
githubmirror
/
tabler
Обзор
Документация
Войти
/
githubmirror
/
tabler
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
shared/components/cards/ForgotPasswordCard.astro
23 строки
879 B
Paweł Kuna
Improve accessibility across layouts, components, and forms (#2799)
06 авг 2026, 00:40
Не верифицирован
06 авг 2026, 00:40
1effe22
Код
Авторство
О чём код?
--- import FormFooter from '@ui/FormFooter.astro' import Button from '@ui/Button.astro' import FormGroup from '@ui/FormGroup.astro' --- <form class="card card-md" action="./" method="get" novalidate> <div class="card-body"> <h2 class="card-title text-center mb-4">Forgot password</h2> <p class="text-secondary mb-4">Enter your email address and your password will be reset and emailed to you.</p> <FormGroup label="Email address" for="forgot-password-email"> <input type="email" id="forgot-password-email" class="form-control" placeholder="Enter email" autocomplete="email" /> </FormGroup> <FormFooter> <Button text="Send me new password" block color="primary" icon="mail" /> </FormFooter> </div> </form> <div class="text-center text-secondary mt-3"> Forget it, <a href="./sign-in.html">send me back</a> to the sign in screen. </div>