donation/app/Views/auth_reset_password.php

123 lines
6.7 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Reset password</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta content="A fully featured admin theme which can be used to build CRM, CMS, etc." name="description" />
<meta content="Coderthemes" name="author" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- App favicon -->
<link rel="shortcut icon" href="<?= base_url() . "public/uploads/default.ico" ?>">
<!-- App css -->
<link href="<?= base_url() . "public/assets/css/bootstrap-creative.min.css" ?>" rel="stylesheet" type="text/css" id="bs-default-stylesheet" />
<link href="<?= base_url() . "public/assets/css/app-creative.min.css" ?>" rel="stylesheet" type="text/css" id="app-default-stylesheet" />
<link href="<?= base_url() . "public/assets/css/bootstrap-creative-dark.min.css" ?>" rel="stylesheet" type="text/css" id="bs-dark-stylesheet" />
<link href="<?= base_url() . "public/assets/css/app-creative-dark.min.css" ?>" rel="stylesheet" type="text/css" id="app-dark-stylesheet" />
<!-- icons -->
<link href="<?= base_url() . "public/assets/css/icons.min.css" ?>" rel="stylesheet" type="text/css" />
</head>
<body class="loading">
<div class="account-pages mt-5 mb-5">
<div class="container">
<div class="row justify-content-center">
<!-- <div class="col-md-8 col-lg-6 col-xl-5"> -->
<div class="col-md-8 col-lg-7 col-xl-5">
<div class="card">
<div class="card-body p-3">
<div class="text-center w-75 m-auto">
<p class="text-muted mb-4 mt-3">Enter your email address and we'll send you an email with instructions to reset your password.</p>
</div>
<form action="<?= base_url()."auth_reset_password_save"?>" method="post" role="form" class="parsley-examples">
<div class="form-group row">
<label class="col-sm-2 col-form-label" for="emailaddress">Email : </label>
<div class="col-sm-10">
<input type="text" readonly class="form-control-plaintext" id="emailaddress" name="email" value="<?= $email ?>">
</div>
</div>
<div class="form-group">
<div class="form-row">
<div class="form-group col-md-6">
<label for="hori-pass1">Password<span class="text-danger">*</span></label>
<div class="input-group input-group-merge">
<input id="hori-pass1" name="password1" type="password" placeholder="Password" required class="form-control">
<!-- <div class="input-group-append" data-password="false">
<div class="input-group-text">
<span class="password-eye"></span>
</div>
</div> -->
</div>
</div>
<div class="form-group col-md-6">
<label for="hori-pass2">Confirm Password<span class="text-danger">*</span></label>
<div class="input-group input-group-merge">
<input data-parsley-equalto="#hori-pass1" type="password" required placeholder="Confirm Password" class="form-control" id="hori-pass2" name="password2">
<!-- <div class="input-group-append" data-password="false">
<div class="input-group-text">
<span class="password-eye"></span>
</div>
</div> -->
</div>
</div>
</div>
<?php if (isset($validationErrors)) : ?>
<span class="widget-simple text-center">
<div class="media-body align-self-center font-24 avatar-title">
<p style="color: #f1556c!important;" class="mt-0" style><?= $validationErrors; ?></p>
</div>
</span>
<?php endif; ?>
<div class="form-group mb-0 text-center">
<button class="btn btn-primary btn-block" type="submit"> Reset Password </button>
</div>
</div>
</form>
</div> <!-- end card-body -->
</div>
<!-- end card -->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-muted">Back to <a href="<?= base_url(); ?>" class="text-primary font-weight-medium ml-1">Log in</a></p>
</div> <!-- end col -->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<p> <?= date('Y') ?> &copy; <?= "bigbamboobookpublish"; ?>.</p>
</footer>
<!-- Vendor js -->
<script src="<?= base_url() . "public/assets/js/vendor.min.js" ?>"></script>
<!-- Plugin js-->
<script src="<?= base_url() . "public/assets/libs/parsleyjs/parsley.min.js" ?>"></script>
<!-- Validation init js-->
<script src="<?= base_url() . "public/assets/js/pages/form-validation.init.js" ?>"></script>
<!-- App js -->
<script src="<?= base_url() . "public/assets/js/app.min.js" ?>"></script>
</body>
</html>