119 lines
4.0 KiB
PHP
119 lines
4.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no" name="viewport">
|
|
<title>Login — Stisla</title>
|
|
|
|
<!-- General CSS Files -->
|
|
<link rel="stylesheet" href="assets/modules/bootstrap/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="assets/modules/fontawesome/css/all.min.css">
|
|
|
|
<!-- CSS Libraries -->
|
|
<link rel="stylesheet" href="assets/modules/bootstrap-social/bootstrap-social.css">
|
|
|
|
<!-- Template CSS -->
|
|
<link rel="stylesheet" href="assets/css/style.css">
|
|
<link rel="stylesheet" href="assets/css/components.css">
|
|
<!-- Start GA -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-94034622-3"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'UA-94034622-3');
|
|
</script>
|
|
<!-- /END GA --></head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
<section class="section">
|
|
<div class="container mt-5">
|
|
<div class="row">
|
|
<div class="col-12 col-sm-8 offset-sm-2 col-md-6 offset-md-3 col-lg-6 offset-lg-3 col-xl-4 offset-xl-4">
|
|
<div class="login-brand">
|
|
RS ANAK DAN BUNDA HARAPAN KITA
|
|
</div>
|
|
|
|
<div class="card card-primary">
|
|
<div class="card-header"><h4>Login</h4></div>
|
|
|
|
<div class="card-body">
|
|
<form method="POST" action="/login" class="needs-validation" novalidate="">
|
|
@csrf
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
<label for="email">Email</label>
|
|
<input id="email" type="email" name="email" class="form-control" name="email" tabindex="1" required autofocus>
|
|
<div class="invalid-feedback">
|
|
Please fill in your email
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<div class="d-block">
|
|
<label for="password" class="control-label">Password</label>
|
|
<div class="float-right">
|
|
<a href="auth-forgot-password.html" class="text-small">
|
|
Forgot Password?
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<input id="password" type="password" name="password" class="form-control" name="password" tabindex="2" required>
|
|
<div class="invalid-feedback">
|
|
please fill in your password
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<button type="submit" class="btn btn-primary btn-lg btn-block" tabindex="4">
|
|
Login
|
|
</button>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="simple-footer">
|
|
Copyright © Joko Prasetio {{ date('Y') }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
|
@if (session()->has('alertError'))
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
Swal.fire({
|
|
title: 'Error',
|
|
text: '{{ session('alertError') }}',
|
|
icon: 'error',
|
|
confirmButtonText: 'OK'
|
|
});
|
|
});
|
|
</script>
|
|
@endif
|
|
<!-- General JS Scripts -->
|
|
<script src="assets/modules/jquery.min.js"></script>
|
|
<script src="assets/modules/popper.js"></script>
|
|
<script src="assets/modules/tooltip.js"></script>
|
|
<script src="assets/modules/bootstrap/js/bootstrap.min.js"></script>
|
|
<script src="assets/modules/nicescroll/jquery.nicescroll.min.js"></script>
|
|
<script src="assets/modules/moment.min.js"></script>
|
|
<script src="assets/js/stisla.js"></script>
|
|
|
|
<!-- JS Libraies -->
|
|
|
|
<!-- Page Specific JS File -->
|
|
|
|
<!-- Template JS File -->
|
|
<script src="assets/js/scripts.js"></script>
|
|
<script src="assets/js/custom.js"></script>
|
|
</body>
|
|
</html>
|