88 lines
3.9 KiB
PHP
88 lines
3.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>Skydash Admin</title>
|
|
<!-- plugins:css -->
|
|
<link rel="stylesheet" href="{{ asset('assets/admin/vendors/feather/feather.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('assets/admin/vendors/ti-icons/css/themify-icons.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('assets/admin/vendors/css/vendor.bundle.base.css') }}">
|
|
<!-- endinject -->
|
|
<!-- Plugin css for this page -->
|
|
<!-- End plugin css for this page -->
|
|
<!-- inject:css -->
|
|
<link rel="stylesheet" href="{{ asset('assets/admin/css/vertical-layout-light/style.css') }}">
|
|
<!-- endinject -->
|
|
<link rel="shortcut icon" href="{{ asset('assets/admin/images/favicon.png') }}" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container-scroller">
|
|
<div class="container-fluid page-body-wrapper full-page-wrapper">
|
|
<div class="content-wrapper d-flex align-items-center auth px-0">
|
|
<div class="row w-100 mx-0">
|
|
<div class="col-lg-4 mx-auto">
|
|
<div class="auth-form-light text-left py-5 px-4 px-sm-5">
|
|
<div class="brand-logo">
|
|
<img src="{{ asset('assets/admin/images/sig-logo.png') }}" alt="logo">
|
|
</div>
|
|
|
|
<h4>Halo Admin!</h4>
|
|
<h6 class="font-weight-light">Silakan masuk untuk melanjutkan.</h6>
|
|
<form class="pt-3" method="POST" action="{{ route('login') }}">
|
|
@csrf
|
|
|
|
@if ($errors->any())
|
|
<div class="alert alert-danger mb-4">
|
|
{{ $errors->first() }}
|
|
</div>
|
|
@endif
|
|
|
|
<div class="form-group">
|
|
<input type="text"
|
|
class="form-control form-control-lg {{ session('error') ? 'is-invalid' : '' }}"
|
|
name="username" placeholder="Username" value="{{ old('username') }}" required>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<input type="password"
|
|
class="form-control form-control-lg {{ session('error') ? 'is-invalid' : '' }}"
|
|
name="password" placeholder="Password" required>
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<button type="submit"
|
|
class="btn btn-block btn-primary btn-lg font-weight-medium auth-form-btn">
|
|
MASUK
|
|
</button>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- content-wrapper ends -->
|
|
</div>
|
|
<!-- page-body-wrapper ends -->
|
|
</div>
|
|
<!-- container-scroller -->
|
|
<!-- plugins:js -->
|
|
<script src="{{ asset('assets/admin/vendors/js/vendor.bundle.base.js') }}"></script>
|
|
<!-- endinject -->
|
|
<!-- Plugin js for this page -->
|
|
<!-- End plugin js for this page -->
|
|
<!-- inject:js -->
|
|
<script src="{{ asset('assets/admin/js/off-canvas.js') }}"></script>
|
|
<script src="{{ asset('assets/admin/js/hoverable-collapse.js') }}"></script>
|
|
<script src="{{ asset('assets/admin/js/template.js') }}"></script>
|
|
<script src="{{ asset('assets/admin/js/settings.js') }}"></script>
|
|
<script src="{{ asset('assets/admin/js/todolist.js') }}"></script>
|
|
<!-- endinject -->
|
|
</body>
|
|
|
|
</html>
|