PHP Classes

File: app/Views/Password/reset.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Task App   app/Views/Password/reset.php   Download  
File: app/Views/Password/reset.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: 1,103 bytes
 

Contents

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

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

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

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

<?php if (session()->has('errors')) : ?>
<ul>
        <?php foreach (session('errors') as $error) : ?>
<li><?= $error; ?></li>
        <?php endforeach; ?>
</ul>
<?php endif; ?>

<div class="container">
    <?= form_open("/password/update/$token"); ?>
<div class="field">
        <label class="label" for="password">Password</label>
        <div class="control">
            <input class="input" type="password" name="password" id="password" value="">
        </div>
    </div>

    <div class="field">
        <label class="label" for="password_confirmation">Password Confirmation</label>
        <div class="control">
            <input class="input" type="password" name="password_confirmation" id="password_confirmation" value="">

        </div>
    </div>

    <button class="button is-primary" type="submit">Reset Password</button>
    <?= form_close(); ?>
</div>

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