2023-02-09 18:02:58 +08:00
|
|
|
<style>
|
2025-05-23 18:55:35 +08:00
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2023-02-09 18:02:58 +08:00
|
|
|
|
2025-05-23 18:55:35 +08:00
|
|
|
body {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding-top: 40px;
|
|
|
|
|
padding-bottom: 40px;
|
|
|
|
|
}
|
2023-02-09 18:02:58 +08:00
|
|
|
|
2025-05-23 18:55:35 +08:00
|
|
|
.form-forgot {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 430px;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
margin: auto;
|
|
|
|
|
}
|
2023-02-09 18:02:58 +08:00
|
|
|
|
2025-05-23 18:55:35 +08:00
|
|
|
input[type="email"] {
|
|
|
|
|
margin-bottom: -1px;
|
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
|
}
|
2023-02-09 18:02:58 +08:00
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<main class="form-forgot">
|
2025-05-23 18:55:35 +08:00
|
|
|
<img src="<?php echo base_url() ?>/CloudLog_logo.png" class="mx-auto d-block" alt="" style="width:100px;height:100px;">
|
2023-02-09 18:02:58 +08:00
|
|
|
<div class="my-2 bg-body rounded-0 shadow-sm card mb-2 shadow-sm">
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<div class="text-center">
|
2025-05-23 18:55:35 +08:00
|
|
|
<h3 class="text-center"><?php echo lang('account_forgot_password'); ?> <i class="fa fa-lock"></i></h3>
|
|
|
|
|
<p><?php echo lang('account_you_can_reset_your_password_here'); ?></p>
|
2023-02-09 18:02:58 +08:00
|
|
|
<div class="panel-body">
|
|
|
|
|
|
2025-05-23 18:55:35 +08:00
|
|
|
<?php if (validation_errors() != ''): ?>
|
|
|
|
|
<div class="alert alert-danger" role="alert">
|
|
|
|
|
<?php echo validation_errors(); ?>
|
|
|
|
|
</div>
|
2022-01-18 23:29:22 +08:00
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
<form id="register-form" role="form" autocomplete="off" class="form" method="post" action="<?php echo site_url('user/forgot_password'); ?>">
|
2023-11-14 20:35:53 +08:00
|
|
|
<div class="mb-3">
|
2023-02-09 18:02:58 +08:00
|
|
|
<div class="input-group">
|
|
|
|
|
<span class="input-group-addon"><i class="glyphicon glyphicon-envelope color-blue"></i></span>
|
2023-06-22 23:12:31 +08:00
|
|
|
<input id="email" name="email" placeholder="<?php echo lang('account_email_address'); ?>" class="form-control" type="email" autofocus>
|
2023-02-09 18:02:58 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-11-14 20:35:53 +08:00
|
|
|
<div class="mb-3">
|
2023-05-17 22:01:55 +08:00
|
|
|
<input name="recover-submit" class="w-100 btn btn-primary btn-block" value="<?php echo lang('account_reset_password'); ?>" type="submit">
|
2022-01-18 23:29:22 +08:00
|
|
|
</div>
|
2023-02-09 18:02:58 +08:00
|
|
|
<input type="hidden" class="hide" name="token" id="token" value="">
|
2022-01-18 23:29:22 +08:00
|
|
|
</form>
|
2023-02-09 18:02:58 +08:00
|
|
|
|
2022-01-18 23:29:22 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-02-09 18:02:58 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|