first init

This commit is contained in:
arifal
2025-01-16 17:16:14 +07:00
commit 84d8f3ca6a
227 changed files with 43922 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
@extends('layouts.base', ['subtitle' => 'Lock Screen'])
@section('body-attribuet')
class="authentication-bg"
@endsection
@section('content')
<div class="account-pages py-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-5">
<div class="card border-0 shadow-lg">
<div class="card-body p-5">
<div class="text-center">
<div class="mx-auto mb-4 text-center auth-logo">
<a href="{{ route('any', 'index') }}" class="logo-dark">
<img src="/images/logo-dark.png" height="32" alt="logo dark">
</a>
<a href="{{ route('any', 'index') }}" class="logo-light">
<img src="/images/logo-light.png" height="28" alt="logo light">
</a>
</div>
<h4 class="fw-bold text-dark mb-2">Hi ! Gaston</h3>
<p class="text-muted">Enter your password to access the admin.</p>
</div>
<form action="{{ route('any', 'index') }}" class="mt-4">
<div class="mb-3">
<label class="form-label" for="example-password">Password</label>
<input type="text" id="example-password" class="form-control"
placeholder="Enter your password">
</div>
<div class="mb-3">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="checkbox-signin">
<label class="form-check-label" for="checkbox-signin">I accept Terms and Condition</label>
</div>
</div>
<div class="mb-1 text-center d-grid">
<button class="btn btn-dark btn-lg fw-medium" type="submit">Sign In</button>
</div>
</form>
</div>
</div>
<p class="text-center mt-4 text-white text-opacity-50">Not you? return
<a href="{{ route ('second' , ['auth','signup']) }}" class="text-decoration-none text-white fw-bold">Sign Up</a>
</p>
</div>
</div>
</div>
</div>
@endsection

View File

@@ -0,0 +1,49 @@
@extends('layouts.base', ['subtitle' => 'Reset Password'])
@section('body-attribuet')
class="authentication-bg"
@endsection
@section('content')
<div class="account-pages py-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-5">
<div class="card border-0 shadow-lg">
<div class="card-body p-5">
<div class="text-center">
<div class="mx-auto mb-4 text-center auth-logo">
<a href="{{ route('any', 'index') }}" class="logo-dark">
<img src="/images/logo-dark.png" height="32" alt="logo dark">
</a>
<a href="{{ route('any', 'index') }}" class="logo-light">
<img src="/images/logo-light.png" height="28" alt="logo light">
</a>
</div>
<h4 class="fw-bold text-dark mb-2">Reset Password</h3>
<p class="text-muted">Enter your email address and we'll send you an email
with instructions to reset your password.</p>
</div>
<form action="{{ route('any', 'index') }}" class="mt-4">
<div class="mb-3">
<label for="email" class="form-label">Email Address</label>
<input type="email" class="form-control" id="email"
placeholder="Enter your email">
</div>
<div class="d-grid">
<button class="btn btn-dark btn-lg fw-medium" type="submit">Reset
Password</button>
</div>
</form>
</div>
</div>
<p class="text-center mt-4 text-white text-opacity-50">Back to
<a href="{{ route ('second' , ['auth','signin']) }}" class="text-decoration-none text-white fw-bold">Sign In</a>
</p>
</div>
</div>
</div>
</div>
@endsection

View File

@@ -0,0 +1,66 @@
@extends('layouts.base', ['subtitle' => 'Sign In'])
@section('body-attribuet')
class="authentication-bg"
@endsection
@section('content')
<div class="account-pages py-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-5">
<div class="card border-0 shadow-lg">
<div class="card-body p-5">
<div class="text-center">
<div class="mx-auto mb-4 text-center auth-logo">
<a href="{{ route('any', 'index') }}" class="logo-dark">
<img src="/images/logo-dark.png" height="32" alt="logo dark">
</a>
<a href="{{ route('any', 'index') }}" class="logo-light">
<img src="/images/logo-light.png" height="28" alt="logo light">
</a>
</div>
<h4 class="fw-bold text-dark mb-2">Welcome Back!</h3>
<p class="text-muted">Sign in to your account to continue</p>
</div>
<form method="POST" action="{{ route('login') }}" class="mt-4">
@csrf
@if (sizeof($errors) > 0)
@foreach ($errors->all() as $error)
<p class="text-red-600 mb-3">{{ $error }}</p>
@endforeach
@endif
<div class="mb-3">
<label for="email" class="form-label">Email Address</label>
<input type="email" class="form-control" id="email" name="email" value="user@demo.com" placeholder="Enter your email">
</div>
<div class="mb-3">
<div class="d-flex justify-content-between align-items-center">
<label for="password" class="form-label">Password</label>
<a href="{{ route ('second' , ['auth','password']) }}" class="text-decoration-none small text-muted">Forgot password?</a>
</div>
<input type="password" class="form-control" id="password" name="password" value="password" placeholder="Enter your password">
</div>
<div class="form-check mb-3">
<input type="checkbox" class="form-check-input" id="remember-me">
<label class="form-check-label" for="remember-me">Remember me</label>
</div>
<div class="d-grid">
<button class="btn btn-dark btn-lg fw-medium" type="submit">Sign In</button>
</div>
</form>
</div>
</div>
<p class="text-center mt-4 text-white text-opacity-50">Don't have an account?
<a href="{{ route ('second' , ['auth','signup']) }}" class="text-decoration-none text-white fw-bold">Sign Up</a>
</p>
</div>
</div>
</div>
</div>
@endsection

View File

@@ -0,0 +1,68 @@
@extends('layouts.base', ['subtitle' => 'Sign Up'])
@section('body-attribuet')
class="authentication-bg"
@endsection
@section('content')
<div class="account-pages py-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-5">
<div class="card border-0 shadow-lg">
<div class="card-body p-5">
<div class="text-center">
<div class="mx-auto mb-4 text-center auth-logo">
<a href="{{ route('any', 'index') }}" class="logo-dark">
<img src="/images/logo-dark.png" height="32" alt="logo dark">
</a>
<a href="{{ route('any', 'index') }}" class="logo-light">
<img src="/images/logo-light.png" height="28" alt="logo light">
</a>
</div>
<h4 class="fw-bold text-dark mb-2">Sign Up</h3>
<p class="text-muted">New to our platform? Sign up now! It only takes a
minute.
</p>
</div>
<form action="{{ route('any', 'index') }}" class="mt-4">
<div class="mb-3">
<label class="form-label" for="example-name">Name</label>
<input type="name" id="example-name" name="example-name"
class="form-control" placeholder="Enter your name">
</div>
<div class="mb-3">
<label class="form-label" for="example-email">Email</label>
<input type="email" id="example-email" name="example-email"
class="form-control" placeholder="Enter your email">
</div>
<div class="mb-3">
<label class="form-label" for="example-password">Password</label>
<input type="text" id="example-password" class="form-control"
placeholder="Enter your password">
</div>
<div class="mb-3">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="checkbox-signin">
<label class="form-check-label" for="checkbox-signin">I accept Terms
and Condition</label>
</div>
</div>
<div class="mb-1 text-center d-grid">
<button class="btn btn-dark btn-lg fw-medium" type="submit">Sign
Up</button>
</div>
</form>
</div>
</div>
<p class="text-center mt-4 text-white text-opacity-50">I already have an account
<a href="{{ route ('second' , ['auth','signin']) }}" class="text-decoration-none text-white fw-bold">Sign In</a>
</p>
</div>
</div>
</div>
</div>
@endsection