PHP Classes

File: app/views/auth/reseta_senha.php

Recommend this page to a friend!
  Classes of Rodrigo Faustino   Personal   app/views/auth/reseta_senha.php   Download  
File: app/views/auth/reseta_senha.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Personal
Generate a portfolio site
Author: By
Last change:
Date: 5 days ago
Size: 707 bytes
 

Contents

Class file image Download
<?php $this->layout('template'); ?>

<section class="container mt-5">
    <h1 class="text-center"><?= $Lang::get('reset_password_title', 'Redefinir Senha') ?></h1>
    <form action="/reseta_senha" method="POST">
        <input type="hidden" name="token" value="<?= htmlspecialchars($token) ?>">
        <div class="mb-3">
            <label for="password" class="w3-text-blue"><?= $Lang::get('new_password_label', 'Nova Senha') ?></label>
            <input type="password" name="password" id="password" class="w3-input w3-border" required>
        </div>
        <button type="submit" class="w3-button w3-green"><?= $Lang::get('reset_password_button', 'Redefinir Senha') ?></button>
    </form>
</section>