GIF89a
<?php ob_start(); ini_set('error_reporting', E_STRICT); include("connect.php"); mysqli_set_charset($conn,'utf8'); date_default_timezone_set('Asia/Kolkata'); ?> <!DOCTYPE html> <html> <?php include'head.php'; ?> <body> <section style=""> <div class="container"> <div class="row d-flex justify-content-center"> <div class="col-xs-5 col-sm-8 col-md-8 col-lg-6 col-xl-4"> <div class="alert alert-danger alert-dismissible"> <button type="button" class="btn-close" data-bs-dismiss="alert"></button> <strong>Danger!</strong> This alert box could indicate a dangerous or potentially negative action. </div> <div class="card-header d-flex justify-content-between align-items-center"> <img src="assest/images/logo.png" class="mx-auto mt-5" style="height:auto ; max-width: 50%"> </div> <div class="card-header d-flex justify-content-between align-items-center mt-5"> <p class="fw-bold text-muted mx-auto fs-5">Password Recovery</p><br> </div> <div class="row"> <div class="col-sm-12 col-xs-12"> <div class="form-group my-4"> <label for="exampleInputEmail1" class="text-primary">Mobile Number</label> <input type="number" class="form-control py-3" id="mobb" placeholder="Your Mobile Number" aria-describedby="" onkeypress="checkMobb('mobb')"> </div> </div> <div class="d-grid gap-3"> <button class="btn btn-primary py-2 fs-6" type="button">Reset Password <i class="bi bi-arrow-right text-white fs-5"></i></button> </div> <hr class="fw-bold mt-5"> <div class="d-flex justify-content-center mb-3 mb-lg-4"> <span class="fs-6"><a href="login_page.php" class="text-decoration-none"> Back To Login</a></span> </div> </div> </div> </div> </div> </section> </body> </html>