shell bypass 403
<!doctype html>
<html lang="en" dir="{{ session()->get('direction') }}" class="light">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<script>
const theme = localStorage.getItem('theme');
if (theme === 'dark') {
document.documentElement.classList.add('dark');
} else {
document.documentElement.classList.add('light');
}
</script>
<title> {{ @helper::appdata()->title }} | {{ trans('labels.signup') }} </title>
<link rel="icon" href="{{ helper::image_path(@helper::appdata()->favicon) }}"><!-- Favicon -->
<link rel="stylesheet" href="{{ url(env('ASSETSPATHURL') . 'web-assets/css/bootstrap.min.css') }}">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="{{ url(env('ASSETSPATHURL') . 'web-assets/css/font_awesome/all.css') }}">
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="{{ url(env('ASSETSPATHURL') . 'web-assets/css/style.css') }}"><!-- Custom CSS -->
<link rel="stylesheet" href="{{ url(env('ASSETSPATHURL') . 'web-assets/css/responsive.css') }}">
<!-- Media Query Resposive CSS -->
<!-- COMMON-CSS -->
<link rel="stylesheet" href="{{ url(env('ASSETSPATHURL') . 'admin-assets/assets/css/toastr/toastr.min.css') }}">
<!-- Toastr CSS -->
<style>
:root {
--bs-primary: {{ helper::appdata()->web_primary_color }};
--bs-secondary: {{ helper::appdata()->web_secondary_color }};
}
</style>
</head>
<body>
<main>
<section class="authentication_sec register loginform_color_bg h-100">
<div class="container">
<div class="d-flex align-items-center justify-content-center vh-100">
<div class="row gx-0 justify-content-center">
<!----- authentication image ----->
<div class="col-xl-5 col-lg-6 col-12 d-none d-lg-block">
<img src="{{ helper::image_path(@helper::appdata()->auth_bg_image) }}"
alt="authentication image" class="h-100 object-fit-cover w-100 object-fit-cover">
</div>
<!----- authentication form ----->
<div class="col-xl-5 col-lg-6 col-12 form-content">
<div class="p-3 p-md-4 w-100">
<a href="{{ route('home') }}">
<img src="{{ helper::image_path(@helper::appdata()->logo) }}" class="logo mb-4"
alt="">
</a>
<h2 class="mb-4 h3 fw-800 color-changer">Get started absolutely <br>free at <span
class="text-secondary">Grocery.</span>
</h2>
<form action="{{ URL::to('/adduser') }}" method="POST" class="auth_form">
@csrf
<div class="form-body mt-3">
<div class="form-group mb-3">
<label class="text-black form-label fs-7 mb-1"
for="name">{{ trans('labels.full_name') }}
<span class="text-danger">*</span>
</label>
@if (session()->has('social_login'))
<input type="text" class="form-control custom-input rounded"
name="name" value="{{ session()->get('social_login')['name'] }}"
placeholder="{{ trans('labels.full_name') }}" required>
@else
<input type="text" class="form-control custom-input rounded"
name="name" value="{{ old('name') }}"
placeholder="{{ trans('labels.full_name') }}" required>
@endif
</div>
<div class="form-group mb-3">
<label class="text-black form-label fs-7 mb-1"
for="email">{{ trans('labels.email') }}
<span class="text-danger">*</span>
</label>
@if (session()->has('social_login'))
<input type="email" class="form-control custom-input rounded"
name="email"
value="{{ session()->get('social_login')['email'] }}"
id="email" placeholder="{{ trans('labels.email') }}" required>
@else
<input type="email" class="form-control custom-input rounded"
name="email" value="{{ old('email') }}" id="email"
placeholder="{{ trans('labels.email') }}" required>
@endif
</div>
<div class="form-group mb-3">
<div class="row g-3">
<div class="col-md">
<label class="text-black form-label fs-7 mb-1"
for="mobile">{{ trans('labels.mobile') }}
<span class="text-danger">*</span>
</label>
<input type="text" class="form-control custom-input rounded"
id="referral_code_o" name="mobile" value="{{ old('mobile') }}"
placeholder="{{ trans('labels.mobile') }}" required>
</div>
<div class="col-md">
<label class="text-black form-label fs-7 mb-1"
for="referral_code">{{ trans('labels.referral_code') }}
</label>
<input type="text" class="form-control custom-input rounded"
id="referral_code_o" name="referral_code"
placeholder="{{ trans('labels.referral_code_o') }}"
@isset($_GET['referral']) value="{{ $_GET['referral'] }}" @endisset>
</div>
</div>
</div>
@if (!session()->has('social_login'))
@if (!@helper::checkaddons('otp'))
<div class="form-group mb-3">
<div class="row g-3">
<div class="col-md check-password">
<label
class="text-black text-black form-label fs-7 mb-1 fs-7 mb-1">{{ trans('labels.password') }}
<span class="text-danger">*</span>
</label>
<input type="password" name="password"
class="form-control custom-input" id="password"
placeholder="{{ trans('labels.password') }}" required
@if (env('Environment') == 'sendbox') value="123456" @endif>
<span class="eye">
<i class="fa-regular fa-eye-slash" id="eye"></i>
</span>
</div>
<div class="col-md">
<label class="text-black form-label fs-7 mb-1"
for="confirm_password">{{ trans('labels.confirm_password') }}
<span class="text-danger">*</span>
</label>
<input type="password"
class="form-control custom-input rounded"
id="confirm_password" name="password_confirmation"
placeholder="{{ trans('labels.confirm_password') }}"
value="{{ old('password_confirmation') }}" required>
</div>
</div>
</div>
@endif
@endif
<div class="form-group d-flex gap-2 align-items-center">
<input type="checkbox" name="checkbox" id="checkbox" value="1"
class="form-check-input m-0" checked
{{ old('checkbox') == 1 ? 'checked' : '' }}>
<label for="checkbox" class=" form-check-label m-0">
{{ trans('labels.i_accepts_the') }}
<a href="{{ URL::to('terms-conditions') }}"
class="text-secondary text-decoration-none fw-bold">{{ trans('labels.terms_conditions') }}</a></label>
</div>
<div class="form-group mt-3">
<button type="submit"
class="btn btn-primary w-100 p-2">{{ trans('labels.signup') }}</button>
</div>
</div>
</form>
<p class="mb-0 fs-7 mt-3 fw-500 text-muted">Already have a Account? <a
href="{{ 'login' }}"
class="text-secondary fw-bold">{{ trans('labels.signin') }}</a></p>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<script src="{{ url(env('ASSETSPATHURL') . 'web-assets/js/jquery/jquery-3.6.0.js') }}"></script><!-- jQuery JS -->
<script src="{{ url(env('ASSETSPATHURL') . 'web-assets/js/bootstrap/bootstrap.bundle.min.js') }}"></script><!-- Bootstrap JS -->
<!-- COMMON-JS -->
<script src="{{ url(env('ASSETSPATHURL') . 'admin-assets/assets/js/toastr/toastr.min.js') }}"></script><!-- Toastr JS -->
<script>
toastr.options = {
"closeButton": true,
"progressBar": true,
}
@if (Session::has('success'))
toastr.success("{{ session('success') }}");
@endif
@if (Session::has('error'))
toastr.error("{{ session('error') }}");
@endif
// to-display-error-message
@if ($errors->any())
@foreach ($errors->all() as $error)
toastr.error('{{ $error }}');
@endforeach
@endif
</script>
<script>
function setLightMode() {
document.documentElement.classList.remove('dark');
document.documentElement.classList.add('light');
localStorage.setItem('theme', 'light');
}
function setDarkMode() {
document.documentElement.classList.remove('light');
document.documentElement.classList.add('dark');
localStorage.setItem('theme', 'dark');
}
</script>
<script>
//============ password show and hide js ============//
$(function() {
$('#eye').click(function() {
if ($(this).hasClass('fa-eye-slash')) {
$(this).removeClass('fa-eye-slash');
$(this).addClass('fa-eye');
$('#password').attr('type', 'text');
} else {
$(this).removeClass('fa-eye');
$(this).addClass('fa-eye-slash');
$('#password').attr('type', 'password');
}
});
});
</script>
</body>
</html>