initial commit

This commit is contained in:
2026-06-06 10:05:39 +07:00
commit b22608adbc
1577 changed files with 641460 additions and 0 deletions
@@ -0,0 +1,49 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>WDBS</title>
<link rel="shortcut icon" type="image/jpg" href="{{ asset('main/assets/images/logos/logo.jpg') }}" />
<link rel="stylesheet" href="{{ asset('main/assets/css/styles.min.css') }}" />
</head>
<body>
<div class="position-relative overflow-hidden bg-login min-vh-100 d-flex align-items-center justify-content-center">
<div class="d-flex align-items-center justify-content-center w-100">
<div class="row justify-content-center w-100">
<div class="col-md-8 col-lg-6 col-xxl-3">
<div class="card mb-0">
<div class="card-body">
<div class="mb-4 text-sm text-gray-600 text-white">
{{ __('Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.') }}
</div>
<!-- Session Status -->
<x-auth-session-status class="mb-4" :status="session('status')" />
<form method="POST" action="{{ route('password.email') }}">
@csrf
<!-- Email Address -->
<div>
<x-input-label class="form-label" for="email" :value="__('Email')" />
<x-text-input id="email" class="block mt-1 w-full form-control white-theme" type="email" name="email" :value="old('email')" required autofocus />
<x-input-error :messages="$errors->get('email')" class="form-label" />
</div>
<div class="flex items-center justify-end mt-4">
<x-primary-button class="btn btn-primary w-100 py-8 fs-4 mb-4 rounded-2">
{{ __('Email Password Reset Link') }}
</x-primary-button>
<a href="{{ route('landing') }}"class="btn btn-primary w-100 py-8 rounded-2">Go Back
</a>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</body>