You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
4.2 KiB
77 lines
4.2 KiB
1 year ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<link rel="icon" type="image/png" sizes="96x96" href="<?php base_url() ?>/assets/img/favicon-32x32.png">
|
||
|
<meta charset="utf-8" />
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||
|
<meta name="description" content="" />
|
||
|
<meta name="author" content="" />
|
||
|
<title>Login - Engine N</title>
|
||
|
<link href="<?= base_url('public/theme/src/authstyles.css') ?>" rel="stylesheet" />
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/js/all.min.js" crossorigin="anonymous"></script>
|
||
|
</head>
|
||
|
|
||
|
<body class="bg-secondary">
|
||
|
<div id="layoutAuthentication">
|
||
|
<div id="layoutAuthentication_content">
|
||
|
<main>
|
||
|
<div class="container">
|
||
|
<div class="row justify-content-center">
|
||
|
<div class="col-lg-5">
|
||
|
<div class="card shadow-lg border-0 rounded-lg mt-5">
|
||
|
<div class="card-header">
|
||
|
<h3 class="text-center font-weight-light my-4"><i class="fa fa-user-secret" aria-hidden="true"></i> Engine</h3>
|
||
|
</div>
|
||
|
<div class="card-body">
|
||
|
<?php if (session()->getFlashdata('msg')) : ?>
|
||
|
<div class="alert alert-danger"><?= session()->getFlashdata('msg') ?></div>
|
||
|
<?php endif; ?>
|
||
|
<form action="<?php base_url() ?>auth/login" method="post">
|
||
|
|
||
|
<div class="form-floating mb-3">
|
||
|
<input class="form-control" name="username" id="username" type="text" placeholder="NIP 9 Digit" />
|
||
|
<label for="inputEmail">NIP</label>
|
||
|
</div>
|
||
|
<div class="form-floating mb-3">
|
||
|
<input class="form-control" name="password" id="password" type="password" placeholder="Password SIKKA" />
|
||
|
<label for="inputPassword">Password</label>
|
||
|
</div>
|
||
|
<div class="form-check mb-3">
|
||
|
<input class="form-check-input" id="inputRememberPassword" type="checkbox" value="" />
|
||
|
<label class="form-check-label" for="inputRememberPassword">Ingat Password</label>
|
||
|
</div>
|
||
|
<div class="d-flex align-items-center justify-content-between mt-4 mb-0">
|
||
|
<a> </a>
|
||
|
<button type="submit" class="btn btn-primary">Login</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
<div class="card-footer text-center py-3">
|
||
|
<div class="small">Gunakan NIP dan Password Sikka</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</main>
|
||
|
</div>
|
||
|
<div id="layoutAuthentication_footer">
|
||
|
<footer class="py-4 bg-light mt-auto">
|
||
|
<div class="container-fluid px-4">
|
||
|
<div class="d-flex align-items-center justify-content-between small">
|
||
|
<div class="text-muted">Copyright © Direktorat Ekstensifikasi Perpajakan <?php echo date('Y') ?></div>
|
||
|
<div>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</footer>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
|
||
|
<script src="<?php base_url('public/theme/src/authscript.js') ?>"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|