119 lines
5.3 KiB
PHP
119 lines
5.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<!-- begin::Head -->
|
|
|
|
<head>
|
|
<!--begin::Base Path (base relative path for assets of this page) -->
|
|
<base href="../../../../">
|
|
<!--end::Base Path -->
|
|
<meta charset="utf-8" />
|
|
|
|
<title>POS | Login</title>
|
|
<meta name="description" content="Login page example">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="base-url" content="{{ url('/') }}">
|
|
|
|
<!--begin::Fonts -->
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700|Roboto:300,400,500,600,700">
|
|
<!--end::Fonts -->
|
|
|
|
<!--begin::Page Custom Styles(used by this page) -->
|
|
<link href="{{ asset('assets/css/demo1/pages/login/login-3.css') }}" rel="stylesheet" type="text/css" />
|
|
<!--end::Page Custom Styles -->
|
|
|
|
<!--begin::Global Theme Styles(used by all pages) -->
|
|
<link href="{{ asset('assets/css/app.bundle.min.css') }}" rel="stylesheet" type="text/css" />
|
|
<!--end::Global Theme Styles -->
|
|
|
|
<link rel="shortcut icon" href="{{ asset('assets/media/logos/bengkel.ico') }}" />
|
|
</head>
|
|
<!-- end::Head -->
|
|
|
|
<!-- begin::Body -->
|
|
|
|
<body class="kt-quick-panel--right kt-demo-panel--right kt-offcanvas-panel--right kt-header--fixed kt-header-mobile--fixed kt-subheader--enabled kt-subheader--fixed kt-subheader--solid kt-aside--enabled kt-aside--fixed kt-page--loading">
|
|
|
|
|
|
<!-- begin:: Page -->
|
|
<div class="kt-grid kt-grid--ver kt-grid--root">
|
|
<div class="kt-grid kt-grid--hor kt-grid--root kt-login kt-login--v3 kt-login--signin" id="kt_login">
|
|
<div class="kt-grid__item kt-grid__item--fluid kt-grid kt-grid--hor" style="background-image: url('{{ asset('assets/media/bg/bg-3.jpg') }}');">
|
|
<div class="kt-grid__item kt-grid__item--fluid kt-login__wrapper">
|
|
<div class="kt-login__container">
|
|
<div class="kt-login__logo kt-margin-b-0">
|
|
<a href="#">
|
|
<img src="{{ asset('assets/media/logos/bengkel-logo.png') }}" width="128">
|
|
</a>
|
|
</div>
|
|
<div class="kt-login__signin">
|
|
<div class="kt-login__head">
|
|
<h3 class="kt-login__title">Sign In</h3>
|
|
</div>
|
|
<form method="POST" class="kt-form" action="" novalidate="novalidate" id="kt_login_form">
|
|
@csrf
|
|
<div class="input-group">
|
|
<input class="form-control" type="text" placeholder="Username" name="username" autocomplete="off">
|
|
</div>
|
|
<div class="input-group">
|
|
<input class="form-control" type="password" placeholder="Password" name="password">
|
|
</div>
|
|
<div class="row kt-login__extra">
|
|
<div class="col kt-align-right">
|
|
@if (Route::has('password.request'))
|
|
<a href="{{ route('password.request') }}" id="kt_login_forgot" class="kt-login__link">
|
|
{{ __('Forgot your password?') }}
|
|
</a>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
<div class="kt-login__actions">
|
|
<button id="kt_login_signin_submit" class="btn btn-brand btn-elevate kt-login__btn-primary">{{ __('Login') }}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="kt-login__account">
|
|
<a href="" class="kt-login__account-link">Sign In To Admin</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- end:: Page -->
|
|
|
|
|
|
<!-- begin::Global Config(global config for global JS sciprts) -->
|
|
<script>
|
|
var KTAppOptions = {
|
|
"colors": {
|
|
"state": {
|
|
"brand": "#5d78ff",
|
|
"dark": "#282a3c",
|
|
"light": "#ffffff",
|
|
"primary": "#5867dd",
|
|
"success": "#34bfa3",
|
|
"info": "#36a3f7",
|
|
"warning": "#ffb822",
|
|
"danger": "#fd3995"
|
|
},
|
|
"base": {
|
|
"label": ["#c5cbe3", "#a1a8c3", "#3d4465", "#3e4466"],
|
|
"shape": ["#f0f3ff", "#d9dffa", "#afb4d4", "#646c9a"]
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<!-- end::Global Config -->
|
|
|
|
<!--begin::Global Theme Bundle(used by all pages) -->
|
|
<script src="{{ asset('assets/js/app.bundle.min.js') }}" type="text/javascript"></script>
|
|
<!--end::Global Theme Bundle -->
|
|
|
|
<!--begin::Page Scripts(used by this page) -->
|
|
<script src="{{ asset('assets/js/demo1/pages/login/login-general.js') }}" type="text/javascript"></script>
|
|
<!--end::Page Scripts -->
|
|
</body>
|
|
<!-- end::Body -->
|
|
|
|
</html> |