PHP Classes

File: docs/templates/hero/login.html.twig

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   docs/templates/hero/login.html.twig   Download  
File: docs/templates/hero/login.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple PHP Password Manager
Application to store and retrieve user password
Author: By
Last change:
Date: 1 year ago
Size: 1,835 bytes
 

Contents

Class file image Download
{% extends 'base.html.twig' %} {% block body %} <div class="row d-flex justify-content-center align-items-center h-100"> <div class="col-md-9 col-lg-6 col-xl-5"> <img src="{{ main_url }}/themes/{{ theme }}/img/draw2.webp" class="img-fluid" alt="login image"> </div> <div class="col-md-8 col-lg-6 col-xl-4 offset-xl-1"> <form method="post"> <input type="hidden" name="action" value="login_user"/> <!-- Email input --> <div class="form-outline mb-4"> <input name="email" type="email" id="form3Example3" class="form-control form-control-lg" placeholder="{{ langs.trans('EmailAddress') }}"/> <label class="form-label" for="form3Example3">{{ langs.trans('EmailAddress') }}</label> </div> <!-- Password input --> <div class="form-outline mb-3"> <input name="password" type="password" id="form3Example4" class="form-control form-control-lg" placeholder="{{ langs.trans('Password') }}"/> <label class="form-label" for="form3Example4">{{ langs.trans('Password') }}</label> </div> <div class="text-center text-lg-start mt-4 pt-2"> <input class="btn btn-primary btn-lg" type="submit" name="submit" value="{{ langs.trans('Login') }}" style="padding-left: 2.5rem; padding-right: 2.5rem;"/> </div> <div class="text-center text-lg-start mt-4 pt-2"> <p class="small fw-bold mt-2 pt-1 mb-0">{{ langs.trans('NoAccountQuestion') }}? <a href="register.php" class="link-danger">{{ langs.trans('Register') }}</a> </p> </div> </form> </div> </div> {% endblock %}