97 lines
4.2 KiB
PHP
97 lines
4.2 KiB
PHP
@php
|
|
$customizerHidden = 'customizer-hide';
|
|
$configData = Helper::appClasses();
|
|
@endphp
|
|
|
|
@extends('admin::layouts.vuexy.layoutMaster')
|
|
|
|
@section('title', 'Two Steps Verifications Cover - Pages')
|
|
|
|
@section('vendor-style')
|
|
@vite([
|
|
'modules/Admin/Resources/assets/vendor/libs/@form-validation/form-validation.scss'
|
|
])
|
|
@endsection
|
|
|
|
@section('page-style')
|
|
@vite([
|
|
'modules/Admin/Resources/scss/auth/page-auth.scss'
|
|
])
|
|
@endsection
|
|
|
|
@section('vendor-script')
|
|
@vite([
|
|
'modules/Admin/Resources/assets/vendor/libs/cleavejs/cleave.js',
|
|
'modules/Admin/Resources/assets/vendor/libs/@form-validation/popular.js',
|
|
'modules/Admin/Resources/assets/vendor/libs/@form-validation/bootstrap5.js',
|
|
'modules/Admin/Resources/assets/vendor/libs/@form-validation/auto-focus.js'
|
|
])
|
|
@endsection
|
|
|
|
@section('page-script')
|
|
@vite([
|
|
'modules/Admin/Resources/js/auth/pages-auth.js',
|
|
'modules/Admin/Resources/js/auth/pages-auth-two-steps.js'
|
|
])
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="authentication-wrapper authentication-cover">
|
|
<!-- Logo -->
|
|
<a href="{{url('/')}}" class="app-brand auth-cover-brand">
|
|
<span class="app-brand-logo demo">
|
|
<img src="{{ asset('storage/' . $_admin['image_logo']['small']) }}" alt="{{ $_admin['app_name'] }}" />
|
|
</span>
|
|
<span class="app-brand-text demo text-heading fw-bold">{{ config('_var.templateName') }}</span>
|
|
</a>
|
|
<!-- /Logo -->
|
|
<div class="authentication-inner row m-0">
|
|
|
|
<!-- /Left Text -->
|
|
<div class="d-none d-lg-flex col-lg-8 p-0">
|
|
<div class="auth-cover-bg auth-cover-bg-color d-flex justify-content-center align-items-center">
|
|
<img src="{{ asset('assets/admin/img/illustrations/auth-two-step-illustration-'.$configData['style'].'.png') }}" alt="auth-two-steps-cover" class="my-5 auth-illustration" data-app-light-img="illustrations/auth-two-step-illustration-light.png" data-app-dark-img="illustrations/auth-two-step-illustration-dark.png">
|
|
|
|
<img src="{{ asset('assets/admin/img/illustrations/bg-shape-image-'.$configData['style'].'.png') }}" alt="auth-two-steps-cover" class="platform-bg" data-app-light-img="illustrations/bg-shape-image-light.png" data-app-dark-img="illustrations/bg-shape-image-dark.png">
|
|
</div>
|
|
</div>
|
|
<!-- /Left Text -->
|
|
|
|
<!-- Two Steps Verification -->
|
|
<div class="d-flex col-12 col-lg-4 align-items-center authentication-bg p-6 p-sm-12">
|
|
<div class="w-px-400 mx-auto mt-12 mt-5">
|
|
<h4 class="mb-1">Two Step Verification 💬</h4>
|
|
<p class="text-start mb-6">
|
|
We sent a verification code to your mobile. Enter the code from the mobile in the field below.
|
|
<span class="fw-medium d-block mt-1 text-heading">******1234</span>
|
|
</p>
|
|
<p class="mb-0">Type your 6 digit security code</p>
|
|
<form id="twoStepsForm" action="{{url('/')}}" method="GET">
|
|
<div class="mb-6">
|
|
<div class="auth-input-wrapper d-flex align-items-center justify-content-between numeral-mask-wrapper">
|
|
<input type="tel" class="form-control auth-input h-px-50 text-center numeral-mask mx-sm-1 my-2" maxlength="1" autofocus>
|
|
<input type="tel" class="form-control auth-input h-px-50 text-center numeral-mask mx-sm-1 my-2" maxlength="1">
|
|
<input type="tel" class="form-control auth-input h-px-50 text-center numeral-mask mx-sm-1 my-2" maxlength="1">
|
|
<input type="tel" class="form-control auth-input h-px-50 text-center numeral-mask mx-sm-1 my-2" maxlength="1">
|
|
<input type="tel" class="form-control auth-input h-px-50 text-center numeral-mask mx-sm-1 my-2" maxlength="1">
|
|
<input type="tel" class="form-control auth-input h-px-50 text-center numeral-mask mx-sm-1 my-2" maxlength="1">
|
|
</div>
|
|
<!-- Create a hidden field which is combined by 3 fields above -->
|
|
<input type="hidden" name="otp" />
|
|
</div>
|
|
<button class="btn btn-primary d-grid w-100 mb-6">
|
|
Verify my account
|
|
</button>
|
|
<div class="text-center">Didn't get the code?
|
|
<a href="javascript:void(0);">
|
|
Resend
|
|
</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<!-- /Two Steps Verification -->
|
|
</div>
|
|
</div>
|
|
@endsection
|