PHP Classes

File: resources/views/auth/forgotten_password.twig

Recommend this page to a friend!
  Packages of Steffen Haase   Beacon   resources/views/auth/forgotten_password.twig   Download  
File: resources/views/auth/forgotten_password.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Beacon
MVC framework with built-in user management
Author: By
Last change:
Date: 1 month ago
Size: 1,800 bytes
 

Contents

Class file image Download
{% extends 'layouts/layout.twig' %} {% block content %} <section class="login"> <div class="card border-radius-md shadow-sm text-center"> <h1 class="pb-sm mb-sm">Forgotten Password</h1> <p class="bt-1 bb-1 p-sm"> To reset the password for your account, please provide the email address which, you have used to register your account.<br> We will then email you a reset link. </p> {% if errors.verification is defined %} <div class="error border-radius-sm"> {{ errors.verification|raw }} </div> {% endif %} <form action="{{ route('forgotten.post') }}" method="POST"> {{ csrf() }} <label for="email" class="bold m-0-auto">Email</label> <div class="spacer-xs"></div> <input id="email" type="email" name="email" class="input" placeholder="{{ old.name|default('you@example.org')|e }}" autocomplete="on" required > {% if errors.email is defined %} <div class="form-error mt-xs"> {% for error in errors.email %} {{ error }} {% endfor %} </div> {% endif %} <div class="spacer-md"></div> <div class="flex justify-center"> <button class="btn shadow-sm mt-md">Send Reset Email</button> </div> </form> </div> </section> {% endblock %}