PHP Classes

File: uploady/reset.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Uploady PHP Upload File to MySQL   uploady/reset.php   Download  
File: uploady/reset.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Uploady PHP Upload File to MySQL
Store file upload details in a MySQL database
Author: By
Last change: Update of uploady/reset.php
Date: 1 month ago
Size: 2,412 bytes
 

Contents

Class file image Download
<?php
include_once 'session.php';
include_once
APP_PATH . 'logic/resetPasswordLogic.php';
?>

<?php include_once 'components/header.php'; ?>

<div class="container pb-5 pt-5">
    <div class="row justify-content-center text-center">
        <div class="col-sm-12 col-md-8 col-lg-4">
            <div class="card">
                <div class="card-header">
                    <b><?= $lang["general"]['reset_password_title']; ?></b>
                </div>
                <div class="card-body">
                    <?php if (isset($msg)) : ?>

                        <?php echo $utils->alert($msg, "primary", "info-circle"); ?>

                    <?php endif; ?>

                    <?php if (isset($err)) : ?>

                        <?php echo $utils->alert($err, "danger", "times-circle"); ?>

                    <?php endif; ?>
<h4><?= $lang["general"]['reset_password_header']; ?></h4>
                    <p><?= $lang["general"]['reset_password_msg']; ?></p>
                    <form method="POST" action="">

                        <div class="mb-3">
                            <div class="form-label-group">
                                <input type="password" name="password" id="password" class="form-control" pattern="(?=^.{8,}$)((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$" title="<?= $lang["general"]['password_pattern_msg'] ?>" placeholder="<?= $lang["general"]['new_password'] ?>" required="required" autofocus="autofocus">
                            </div>
                        </div>

                        <div class="mb-3">
                            <div class="form-label-group">
                                <input type="password" name="confirmPassword" id="confirmPassword" pattern="(?=^.{8,}$)((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$" title="<?= $lang["general"]['password_pattern_msg'] ?>" class="form-control" placeholder="<?= $lang["general"]['confirm_password']; ?>" required="required" autofocus="autofocus">
                            </div>
                        </div>
                        <button class="btn btn-primary btn-block" type="submit">
                            <?= $lang["general"]['reset_password_button']; ?>
</button>
                    </form>
                </div>
            </div>
        </div>
    </div>
</div>

<?php include_once 'components/footer.php'; ?>