first commit

This commit is contained in:
2024-04-04 13:08:00 +05:45
commit c969cdabcc
967 changed files with 44905 additions and 0 deletions

View File

@ -0,0 +1,139 @@
@extends('layouts.guest')
<x-auth-session-status class="mb-4" :status="session('status')" />
@section('content')
<div class="auth-page-content pt-lg-5 overflow-hidden">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="card overflow-hidden">
<div class="row g-0">
<div class="col-lg-6">
<div class="p-lg-5 auth-one-bg h-100 p-4">
<div class="bg-overlay"></div>
<div class="position-relative h-100 d-flex flex-column">
<div class="mb-4">
<a href="index-2.html" class="d-block">
<img src="assets/images/logo-light.png" alt="" height="18">
</a>
</div>
<div class="mt-auto">
<div class="mb-3">
<i class="ri-double-quotes-l display-4 text-success"></i>
</div>
<div id="qoutescarouselIndicators" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#qoutescarouselIndicators" data-bs-slide-to="0"
class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#qoutescarouselIndicators" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#qoutescarouselIndicators" data-bs-slide-to="2"
aria-label="Slide 3"></button>
</div>
<div class="carousel-inner text-white-50 pb-5 text-center">
<div class="carousel-item active">
<p class="fs-15 fst-italic">" Great! Clean code, clean design, easy for customization.
Thanks very much! "</p>
</div>
<div class="carousel-item">
<p class="fs-15 fst-italic">" The theme is really great with an amazing customer support."
</p>
</div>
<div class="carousel-item">
<p class="fs-15 fst-italic">" Great! Clean code, clean design, easy for customization.
Thanks very much! "</p>
</div>
</div>
</div>
<!-- end carousel -->
</div>
</div>
</div>
</div>
<!-- end col -->
<div class="col-lg-6">
<div class="p-lg-5 p-4">
<div>
<h5 class="text-primary">Welcome Back !</h5>
<p class="text-muted">Sign in to continue.</p>
</div>
<div class="mt-4">
<form method="POST" action="{{ route('login') }}">
@csrf
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" placeholder="Enter email" name="email"
:value="old('email')" required autofocus autocomplete="username">
</div>
<div class="mb-3">
<div class="float-end">
@if (Route::has('password.request'))
<a href="auth-pass-reset-cover.html" class="text-muted">Forgot password?</a>
@endif
</div>
<label class="form-label" for="password-input">Password</label>
<div class="position-relative auth-pass-inputgroup mb-3">
<input type="password" class="form-control password-input pe-5" placeholder="Enter password"
id="password-input" name="password" required autocomplete="current-password">
<button
class="btn btn-link position-absolute text-decoration-none text-muted password-addon end-0 top-0"
type="button" id="password-addon"><i class="ri-eye-fill align-middle"></i></button>
</div>
</div>
<div class="form-check">
<input class="form-check-input" name="remember_me" type="checkbox" id="auth-remember-check">
<label class="form-check-label" for="auth-remember-check">Remember me</label>
</div>
<div class="mt-4">
<button class="btn btn-success w-100" type="submit">Sign In</button>
</div>
{{-- <div class="mt-4 text-center">
<div class="signin-other-title">
<h5 class="fs-13 title mb-4">Sign In with</h5>
</div>
<div>
<button type="button" class="btn btn-primary btn-icon waves-effect waves-light"><i
class="ri-facebook-fill fs-16"></i></button>
<button type="button" class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-google-fill fs-16"></i></button>
<button type="button" class="btn btn-dark btn-icon waves-effect waves-light"><i
class="ri-github-fill fs-16"></i></button>
<button type="button" class="btn btn-info btn-icon waves-effect waves-light"><i
class="ri-twitter-fill fs-16"></i></button>
</div>
</div> --}}
</form>
</div>
<div class="mt-5 text-center">
<p class="mb-0">Don't have an account ? <a href="{{ route('register') }}"
class="fw-semibold text-primary text-decoration-underline"> Signup</a> </p>
</div>
</div>
</div>
<!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end card -->
</div>
<!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
@endsection

View File

@ -0,0 +1,49 @@
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">{{ __('Confirm Password') }}</div>
<div class="card-body">
{{ __('Please confirm your password before continuing.') }}
<form method="POST" action="{{ route('password.confirm') }}">
@csrf
<div class="row mb-3">
<label for="password" class="col-md-4 col-form-label text-md-end">{{ __('Password') }}</label>
<div class="col-md-6">
<input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="current-password">
@error('password')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
<div class="row mb-0">
<div class="col-md-8 offset-md-4">
<button type="submit" class="btn btn-primary">
{{ __('Confirm Password') }}
</button>
@if (Route::has('password.request'))
<a class="btn btn-link" href="{{ route('password.request') }}">
{{ __('Forgot Your Password?') }}
</a>
@endif
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection

View File

@ -0,0 +1,47 @@
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">{{ __('Reset Password') }}</div>
<div class="card-body">
@if (session('status'))
<div class="alert alert-success" role="alert">
{{ session('status') }}
</div>
@endif
<form method="POST" action="{{ route('password.email') }}">
@csrf
<div class="row mb-3">
<label for="email" class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label>
<div class="col-md-6">
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus>
@error('email')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
<div class="row mb-0">
<div class="col-md-6 offset-md-4">
<button type="submit" class="btn btn-primary">
{{ __('Send Password Reset Link') }}
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection

View File

@ -0,0 +1,65 @@
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">{{ __('Reset Password') }}</div>
<div class="card-body">
<form method="POST" action="{{ route('password.update') }}">
@csrf
<input type="hidden" name="token" value="{{ $token }}">
<div class="row mb-3">
<label for="email" class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label>
<div class="col-md-6">
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ $email ?? old('email') }}" required autocomplete="email" autofocus>
@error('email')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
<div class="row mb-3">
<label for="password" class="col-md-4 col-form-label text-md-end">{{ __('Password') }}</label>
<div class="col-md-6">
<input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="new-password">
@error('password')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
<div class="row mb-3">
<label for="password-confirm" class="col-md-4 col-form-label text-md-end">{{ __('Confirm Password') }}</label>
<div class="col-md-6">
<input id="password-confirm" type="password" class="form-control" name="password_confirmation" required autocomplete="new-password">
</div>
</div>
<div class="row mb-0">
<div class="col-md-6 offset-md-4">
<button type="submit" class="btn btn-primary">
{{ __('Reset Password') }}
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection

View File

@ -0,0 +1,170 @@
@extends('layouts.guest')
@section('content')
<!-- auth-page content -->
<div class="auth-page-content pt-lg-5 overflow-hidden">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="card m-0 overflow-hidden">
<div class="row justify-content-center g-0">
<div class="col-lg-6">
<div class="p-lg-5 auth-one-bg h-100 p-4">
<div class="bg-overlay"></div>
<div class="position-relative h-100 d-flex flex-column">
<div class="mb-4">
<a href="index-2.html" class="d-block">
<img src="assets/images/logo-light.png" alt="" height="18">
</a>
</div>
<div class="mt-auto">
<div class="mb-3">
<i class="ri-double-quotes-l display-4 text-success"></i>
</div>
<div id="qoutescarouselIndicators" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#qoutescarouselIndicators" data-bs-slide-to="0"
class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#qoutescarouselIndicators" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#qoutescarouselIndicators" data-bs-slide-to="2"
aria-label="Slide 3"></button>
</div>
<div class="carousel-inner text-white-50 pb-5 text-center">
<div class="carousel-item active">
<p class="fs-15 fst-italic">" Great! Clean code, clean design, easy for customization.
Thanks very much! "</p>
</div>
<div class="carousel-item">
<p class="fs-15 fst-italic">" The theme is really great with an amazing customer support."
</p>
</div>
<div class="carousel-item">
<p class="fs-15 fst-italic">" Great! Clean code, clean design, easy for customization.
Thanks very much! "</p>
</div>
</div>
</div>
<!-- end carousel -->
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="p-lg-5 p-4">
<div>
<h5 class="text-primary">Register Account</h5>
<p class="text-muted">Get your account now.</p>
</div>
<div class="mt-4">
<form class="needs-validation" novalidate method="POST" action="{{ route('register') }}">
@csrf
<div class="mb-3">
<label for="username" class="form-label">Full name <span class="text-danger">*</span></label>
<input type="text" class="form-control" id="username" placeholder="Enter your name"
name="name" :value="old('name')" required autofocus autocomplete="name">
<div class="invalid-feedback">
Please enter username
</div>
</div>
<div class="mb-3">
<label for="useremail" class="form-label">Email <span class="text-danger">*</span></label>
<input type="email" class="form-control" id="useremail" placeholder="Enter email address"
name="email" :value="old('email')" required autocomplete="username">
<div class="invalid-feedback">
Please enter email
</div>
</div>
<div class="mb-3">
<label class="form-label" for="password-input">Password</label>
<div class="position-relative auth-pass-inputgroup">
<input type="password" class="form-control password-input pe-5" onpaste="return false"
placeholder="Enter password" id="password-input" aria-describedby="passwordInput"
pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}" name="password" required
autocomplete="new-password">
<button
class="btn btn-link position-absolute text-decoration-none text-muted password-addon end-0 top-0"
type="button" id="password-addon"><i class="ri-eye-fill align-middle"></i></button>
<div class="invalid-feedback">
Please enter password
</div>
</div>
</div>
<div class="mb-3">
<label class="form-label" for="confirm-password-input">Confirm Password</label>
<div class="position-relative auth-pass-inputgroup">
<input type="password" class="form-control password-input pe-5" onpaste="return false"
placeholder="Enter password" id="confirm-password-input" aria-describedby="passwordInput"
pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}" name="password_confirmation" required
autocomplete="new-password">
<button
class="btn btn-link position-absolute text-decoration-none text-muted password-addon end-0 top-0"
type="button" id="password-addon"><i class="ri-eye-fill align-middle"></i></button>
<div class="invalid-feedback">
Please confirm your new password
</div>
</div>
</div>
<div class="mb-4">
<p class="fs-12 text-muted fst-italic mb-0">By registering you agree to the Velzon <a
href="#" class="text-primary text-decoration-underline fst-normal fw-medium">Terms
of Use</a></p>
</div>
<div id="password-contain" class="bg-light mb-2 rounded p-3">
<h5 class="fs-13">Password must contain:</h5>
<p id="pass-length" class="invalid fs-12 mb-2">Minimum <b>8 characters</b></p>
<p id="pass-lower" class="invalid fs-12 mb-2">At <b>lowercase</b> letter (a-z)</p>
<p id="pass-upper" class="invalid fs-12 mb-2">At least <b>uppercase</b> letter (A-Z)</p>
<p id="pass-number" class="invalid fs-12 mb-0">A least <b>number</b> (0-9)</p>
</div>
<div class="mt-4">
<button class="btn btn-success w-100" type="submit">Sign Up</button>
</div>
{{-- <div class="mt-4 text-center">
<div class="signin-other-title">
<h5 class="fs-13 title text-muted mb-4">Create account with</h5>
</div>
<div>
<button type="button" class="btn btn-primary btn-icon waves-effect waves-light"><i
class="ri-facebook-fill fs-16"></i></button>
<button type="button" class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-google-fill fs-16"></i></button>
<button type="button" class="btn btn-dark btn-icon waves-effect waves-light"><i
class="ri-github-fill fs-16"></i></button>
<button type="button" class="btn btn-info btn-icon waves-effect waves-light"><i
class="ri-twitter-fill fs-16"></i></button>
</div>
</div> --}}
</form>
</div>
<div class="mt-5 text-center">
<p class="mb-0">Already have an account ? <a href="{{ route('login') }}"
class="fw-semibold text-primary text-decoration-underline"> Signin</a> </p>
</div>
</div>
</div>
</div>
</div>
<!-- end card -->
</div>
<!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end auth page content -->
@endsection

View File

@ -0,0 +1,28 @@
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">{{ __('Verify Your Email Address') }}</div>
<div class="card-body">
@if (session('resent'))
<div class="alert alert-success" role="alert">
{{ __('A fresh verification link has been sent to your email address.') }}
</div>
@endif
{{ __('Before proceeding, please check your email for a verification link.') }}
{{ __('If you did not receive the email') }},
<form class="d-inline" method="POST" action="{{ route('verification.resend') }}">
@csrf
<button type="submit" class="btn btn-link p-0 m-0 align-baseline">{{ __('click here to request another') }}</button>.
</form>
</div>
</div>
</div>
</div>
</div>
@endsection