Advertisement
martinms

Untitled

Mar 27th, 2023
665
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 7.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="id">
  3.  
  4. <head>
  5.     <meta charset="utf-8" />
  6.     <meta name="viewport" content="width=device-width, initial-scale=1" />
  7.  
  8.     <title>User Login</title>
  9.  
  10.     <link rel="shortcut icon" href="{{ asset('themes/metronic/media/logos/favicon.ico') }}" />
  11.     <!--begin::Fonts-->
  12.     <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700" />
  13.     <!--end::Fonts-->
  14.     <!--begin::Global Stylesheets Bundle(used by all pages)-->
  15.     <link href="{{ asset('themes/metronic/plugins/global/plugins.bundle.css') }}" rel="stylesheet" type="text/css" />
  16.     <link href="{{ asset('themes/metronic/css/style.bundle.css') }}" rel="stylesheet" type="text/css" />
  17.     <!--end::Global Stylesheets Bundle-->
  18.  
  19.     <!--begin::Page bg image-->
  20.     <style>
  21.         body {
  22.             background-image: url('{{ asset('themes/metronic/media/auth/bg10.jpeg') }}');
  23.         }
  24.  
  25.         [data-theme="dark"] body {
  26.             background-image: url('{{ asset('themes/metronic/media/auth/bg10-dark.jpeg') }}');
  27.         }
  28.     </style>
  29.     <!--end::Page bg image-->
  30. </head>
  31. <!--end::Head-->
  32. <!--begin::Body-->
  33.  
  34. <body id="kt_body" class="app-blank app-blank bgi-size-cover bgi-position-center bgi-no-repeat">
  35.     <!--begin::Root-->
  36.     <div class="d-flex flex-column flex-root" id="kt_app_root">
  37.         <!--begin::Authentication - Sign-in -->
  38.         <div class="d-flex flex-column flex-lg-row flex-column-fluid">
  39.             <!--begin::Aside-->
  40.             <div class="d-flex flex-lg-row-fluid">
  41.                 <!--begin::Content-->
  42.                 <div class="d-flex flex-column flex-center pb-0 pb-lg-10 p-10 w-100">
  43.                     <!--begin::Image-->
  44.                     <img class="theme-light-show mx-auto mw-100 w-150px w-lg-300px mb-10 mb-lg-20"
  45.                         src="{{ asset('themes/metronic/media/auth/agency.png') }}" alt="" />
  46.                     <img class="theme-dark-show mx-auto mw-100 w-150px w-lg-300px mb-10 mb-lg-20"
  47.                         src="{{ asset('themes/metronic/media/auth/agency-dark.png') }}" alt="" />
  48.                     <!--end::Image-->
  49.                     <!--begin::Title-->
  50.                     <h1 class="text-gray-800 fs-2qx fw-bold text-center mb-7">Sistem Informasi Prestasi Siswa</h1>
  51.                     <!--end::Title-->
  52.                     <!--end::Text-->
  53.                 </div>
  54.                 <!--end::Content-->
  55.             </div>
  56.             <!--begin::Aside-->
  57.             <!--begin::Body-->
  58.             <div class="d-flex flex-column-fluid flex-lg-row-auto justify-content-center justify-content-lg-end p-12">
  59.                 <!--begin::Wrapper-->
  60.                 <div class="bg-body d-flex flex-center rounded-4 w-md-600px p-10">
  61.                     <!--begin::Content-->
  62.                     <div class="w-md-400px">
  63.                         <!--begin::Form-->
  64.                         <form action="{{ route('login') }}" method="POST" class="form w-100" novalidate="novalidate"
  65.                             id="kt_sign_in_form">
  66.                             @csrf
  67.  
  68.                             <!--begin::Heading-->
  69.                             <div class="text-center mb-11">
  70.                                 <!--begin::Title-->
  71.                                 <h1 class="text-dark fw-bolder mb-3">Login User</h1>
  72.                                 <!--end::Title-->
  73.                             </div>
  74.                             <!--begin::Heading-->
  75.                             <!--begin::Separator-->
  76.                             <div class="separator separator-content my-14"></div>
  77.                             <!--end::Separator-->
  78.                             <!--begin::Input group=-->
  79.                             <div class="fv-row mb-8">
  80.                                 <!--begin::Email-->
  81.                                 <input type="email" placeholder="Email" name="email" autocomplete="off"
  82.                                     class="form-control bg-transparent @error('email') is-invalid @enderror" required>
  83.                                 <!--end::Email-->
  84.  
  85.                                 @error('email')
  86.                                     <div class="invalid-feedback">
  87.                                         {{ $message }}
  88.                                     </div>
  89.                                 @enderror
  90.  
  91.                             </div>
  92.                             <!--end::Input group=-->
  93.                             <div class="fv-row mb-3">
  94.                                 <!--begin::Password-->
  95.                                 <input type="password" placeholder="Password" name="password" autocomplete="off"
  96.                                     class="form-control bg-transparent @error('password') is-invalid @enderror"
  97.                                     required>
  98.                                 <!--end::Password-->
  99.  
  100.                                 @error('password')
  101.                                     <div class="invalid-feedback">
  102.                                         {{ $message }}
  103.                                     </div>
  104.                                 @enderror
  105.  
  106.                             </div>
  107.                             <!--end::Input group=-->
  108.                             {{-- <!--begin::Wrapper-->
  109.                             <div class="d-flex flex-stack flex-wrap gap-3 fs-base fw-semibold mb-8">
  110.                                 <div></div>
  111.                                 <!--begin::Link-->
  112.                                 <a href="../../demo1/dist/authentication/layouts/overlay/reset-password.html"
  113.                                     class="link-primary">Forgot Password ?</a>
  114.                                 <!--end::Link-->
  115.                             </div>
  116.                             <!--end::Wrapper--> --}}
  117.                             <!--begin::Submit button-->
  118.                             <div class="d-grid my-10">
  119.                                 <button type="submit" id="kt_sign_in_submit" class="btn btn-primary">
  120.                                     <!--begin::Indicator label-->
  121.                                     <span class="indicator-label">Login</span>
  122.                                     <!--end::Indicator label-->
  123.                                 </button>
  124.                             </div>
  125.                             <!--end::Submit button-->
  126.                         </form>
  127.                         <!--end::Form-->
  128.                     </div>
  129.                     <!--end::Content-->
  130.                 </div>
  131.                 <!--end::Wrapper-->
  132.             </div>
  133.             <!--end::Body-->
  134.         </div>
  135.         <!--end::Authentication - Sign-in-->
  136.     </div>
  137.     <!--end::Root-->
  138.     <!--begin::Javascript-->
  139.     <script>
  140.         var hostUrl = "themes/metronic/";
  141.     </script>
  142.     <!--begin::Global Javascript Bundle(used by all pages)-->
  143.     <script src="{{ asset('themes/metronic/plugins/global/plugins.bundle.js') }}"></script>
  144.     <script src="{{ asset('themes/metronic/js/scripts.bundle.js') }}"></script>
  145.     <!--end::Global Javascript Bundle-->
  146.  
  147.     <!--begin::Theme mode setup on page load-->
  148.     <script>
  149.         var defaultThemeMode = "light";
  150.         var themeMode;
  151.         if (document.documentElement) {
  152.             if (document.documentElement.hasAttribute("data-theme-mode")) {
  153.                 themeMode = document.documentElement.getAttribute("data-theme-mode");
  154.             } else {
  155.                 if (localStorage.getItem("data-theme") !== null) {
  156.                     themeMode = localStorage.getItem("data-theme");
  157.                 } else {
  158.                     themeMode = defaultThemeMode;
  159.                 }
  160.             }
  161.             if (themeMode === "system") {
  162.                 themeMode = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light";
  163.             }
  164.             document.documentElement.setAttribute("data-theme", themeMode);
  165.         }
  166.     </script>
  167.     <!--end::Theme mode setup on page load-->
  168.     <!--end::Javascript-->
  169. </body>
  170. <!--end::Body-->
  171.  
  172. </html>
  173.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement