dokter-telekonsultasi/resources/views/auth/lockscreen.blade.php
2025-03-26 10:01:46 +07:00

49 lines
3.4 KiB
PHP

<x-guest-layout>
<section class="login-content">
<div class="row m-0 align-items-center bg-white vh-100">
<div class="col-md-6 p-0">
<div class="card card-transparent auth-card shadow-none d-flex justify-content-center mb-0">
<div class="card-body">
<a href="{{route('dashboard')}}" class="navbar-brand d-flex align-items-center mb-3">
<svg width="30" class="text-primary" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="-0.757324" y="19.2427" width="28" height="4" rx="2" transform="rotate(-45 -0.757324 19.2427)" fill="currentColor"/>
<rect x="7.72803" y="27.728" width="28" height="4" rx="2" transform="rotate(-45 7.72803 27.728)" fill="currentColor"/>
<rect x="10.5366" y="16.3945" width="16" height="4" rx="2" transform="rotate(45 10.5366 16.3945)" fill="currentColor"/>
<rect x="10.5562" y="-0.556152" width="28" height="4" rx="2" transform="rotate(45 10.5562 -0.556152)" fill="currentColor"/>
</svg>
<h4 class="logo-title ms-3">{{env('APP_NAME')}}</h4>
</a>
<img src="{{asset('images/avatars/01.png')}}" class="rounded avatar-80 mb-3" alt="">
<h2 class="mb-2">Hi ! Ruben Dokidis</h2>
<p>Enter your password to access the admin.</p>
<x-auth-validation-errors class="mb-4" :errors="$errors" />
<form>
<div class="row">
<div class="col-lg-12">
<div class="floating-label form-group">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" aria-describedby="password" placeholder=" ">
</div>
</div>
</div>
<button type="submit" class="btn btn-primary">Login</button>
</form>
</div>
</div>
<div class="sign-bg">
<svg width="280" height="230" viewBox="0 0 431 398" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.05">
<rect x="-157.085" y="193.773" width="543" height="77.5714" rx="38.7857" transform="rotate(-45 -157.085 193.773)" fill="#3B8AFF"></rect>
<rect x="7.46875" y="358.327" width="543" height="77.5714" rx="38.7857" transform="rotate(-45 7.46875 358.327)" fill="#3B8AFF"></rect>
<rect x="61.9355" y="138.545" width="310.286" height="77.5714" rx="38.7857" transform="rotate(45 61.9355 138.545)" fill="#3B8AFF"></rect>
<rect x="62.3154" y="-190.173" width="543" height="77.5714" rx="38.7857" transform="rotate(45 62.3154 -190.173)" fill="#3B8AFF"></rect>
</g>
</svg>
</div>
</div>
<div class="col-md-6 d-md-block d-none bg-primary p-0 mt-n1 vh-100 overflow-hidden">
<img src="{{asset('images/auth/04.png')}}" class="img-fluid gradient-main animated-scaleX" alt="images">
</div>
</div>
</section>
</x-guest-layout>