File "change_password.php"

Full path: /home/fsibplc/public_html/fsib/accountOpening-v2/change_password.php
File size: 1001 B (1001 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

include 'all_sql.php';
include 'sidebar.php';


?>

<div class="show-content">
    <div class="card" style="width: 600px;margin:30px auto">
        <h3 class="text-info mt-3">Password Reset</h3>
        <form action="" method="post" class="p-5">
            <div class="form-group row">
                <label for="old" class="form-label">Old Password</label>
                <input type="password" name="old_password" class="form-control">
            </div>
            <div class="form-group row">
                <label for="new" class="form-label">New Password</label>
                <input type="password" name="new_password" class="form-control">
            </div>
            <div class="form-group row">
                <label for="retype" class="form-label">Retype New Password</label>
                <input type="password" name="retype_password" class="form-control">
            </div>
        </form>
    </div>
</div>

<?php include 'footer.php'; ?>