2021-11-12 18:51:25 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @var string $base_url
|
|
|
|
* @var string $dest_url
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
2021-11-15 11:49:08 +03:00
|
|
|
<?php extend('layouts/account/account_layout') ?>
|
|
|
|
|
|
|
|
<?php section('content') ?>
|
|
|
|
|
2021-11-12 18:51:25 +03:00
|
|
|
<h2><?= lang('backend_section') ?></h2>
|
2021-11-15 11:49:08 +03:00
|
|
|
|
2021-11-12 18:51:25 +03:00
|
|
|
<p><?= lang('you_need_to_login') ?></p>
|
2021-11-15 11:49:08 +03:00
|
|
|
|
2021-11-12 18:51:25 +03:00
|
|
|
<hr>
|
|
|
|
<div class="alert d-none"></div>
|
|
|
|
|
|
|
|
<form id="login-form">
|
2021-11-23 11:53:10 +03:00
|
|
|
<div class="mb-3">
|
2021-11-12 18:51:25 +03:00
|
|
|
<label for="username"><?= lang('username') ?></label>
|
|
|
|
<input type="text" id="username"
|
|
|
|
placeholder="<?= lang('enter_username_here') ?>"
|
|
|
|
class="form-control"/>
|
|
|
|
</div>
|
2021-11-23 11:53:10 +03:00
|
|
|
<div class="mb-3">
|
2021-11-12 18:51:25 +03:00
|
|
|
<label for="password"><?= lang('password') ?></label>
|
|
|
|
<input type="password" id="password"
|
|
|
|
placeholder="<?= lang('enter_password_here') ?>"
|
|
|
|
class="form-control"/>
|
|
|
|
</div>
|
|
|
|
|
2021-11-23 11:53:10 +03:00
|
|
|
<div class="mb-3">
|
2021-11-12 18:51:25 +03:00
|
|
|
<button type="submit" id="login" class="btn btn-primary">
|
2021-11-23 10:41:37 +03:00
|
|
|
<i class="fas fa-sign-in-alt me-2"></i>
|
2021-11-12 18:51:25 +03:00
|
|
|
<?= lang('login') ?>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
|
2021-11-29 10:10:09 +03:00
|
|
|
<a href="<?= site_url('user/forgot_password') ?>" class="forgot-password"><?= lang('forgot_your_password') ?></a>
|
2021-11-12 18:51:25 +03:00
|
|
|
|
|
2021-11-23 10:34:03 +03:00
|
|
|
<span id="select-language" class="badge bg-success">
|
2021-11-15 11:49:08 +03:00
|
|
|
<?= ucfirst(config('language')) ?>
|
|
|
|
</span>
|
2021-11-12 18:51:25 +03:00
|
|
|
|
|
|
|
</form>
|
2021-11-15 11:49:08 +03:00
|
|
|
<?php section('content') ?>
|
|
|
|
|
|
|
|
<?php section('scripts') ?>
|
2021-11-12 18:51:25 +03:00
|
|
|
|
|
|
|
<script src="<?= asset_url('assets/vendor/@fortawesome-fontawesome-free/fontawesome.min.js') ?>"></script>
|
|
|
|
<script src="<?= asset_url('assets/vendor/@fortawesome-fontawesome-free/solid.min.js') ?>"></script>
|
2021-11-29 10:55:29 +03:00
|
|
|
<script src="<?= asset_url('assets/js/utils/general_functions.js') ?>"></script>
|
2021-11-12 18:51:25 +03:00
|
|
|
<script src="<?= asset_url('assets/js/login.js') ?>"></script>
|
2021-11-15 11:49:08 +03:00
|
|
|
|
|
|
|
<?php section('scripts') ?>
|