PHP Classes

File: app/Views/Password/forget.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Task App   app/Views/Password/forget.php   Download  
File: app/Views/Password/forget.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Task App
Create and manage tasks to be done
Author: By
Last change:
Date: 1 month ago
Size: 613 bytes
 

Contents

Class file image Download
<?= $this->extend("base"); ?>

<?= $this->section("title"); ?>Forget Password<?= $this->endSection(); ?>

<?= $this->section("content"); ?>

<h1 class="title">Forget Password</h1>

<div class="container">
    <?= form_open("/password/process"); ?>
<div class="field">
        <label class="label" for="email"></label>
        <div class="control">
            <input class="input" type="email" name="email" placeholder="Email" value="<?= old("email"); ?>">
        </div>
    </div>
    <button class="button is-primary" type="submit">Send</button>
    <?= form_close(); ?>
</div>

<?= $this->endSection(); ?>