@@ -6449,4 +6449,32 @@ ul.notification-drop {
|
||||
.admin-profile .dropdown {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/* for testimonials */
|
||||
|
||||
.inn_to_testi {
|
||||
width: 80%;
|
||||
background: #fff;
|
||||
box-shadow: 0 0 16px 0px #d7d7d7;
|
||||
padding: 20px;
|
||||
vertical-align: middle;
|
||||
border-radius: 10px;
|
||||
height: 200px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.testi_slider_sec .inn_testi {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.inn_to_testi h2 {
|
||||
font-size: 22px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.inn_to_testi p {
|
||||
margin: 0;
|
||||
}
|
||||
@@ -799,3 +799,31 @@ a.golden-btn {
|
||||
.main-banner .banner-card p {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* for testimonials */
|
||||
|
||||
.inn_to_testi {
|
||||
width: 80%;
|
||||
background: #fff;
|
||||
box-shadow: 0 0 16px 0px #d7d7d7;
|
||||
padding: 20px;
|
||||
vertical-align: middle;
|
||||
border-radius: 10px;
|
||||
height: 200px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.testi_slider_sec .inn_testi {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.inn_to_testi h2 {
|
||||
font-size: 22px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.inn_to_testi p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@@ -57951,3 +57951,7 @@ table.dataTable tbody tr {
|
||||
background: #eff2f5;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.dataTables_wrapper {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
@extends('Frontend.layouts.master')
|
||||
@section('style')
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/flatpickr.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/themes/dark.css">
|
||||
|
||||
<style>
|
||||
.error {
|
||||
color: red !important
|
||||
@@ -64,9 +67,11 @@
|
||||
</div> --}}
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Date Of Incorporation</label>
|
||||
<input type="date" id="dob" name="dob"
|
||||
<div class="resetDate">
|
||||
<input type="text" name="dob"
|
||||
placeholder="Enter Date Of Incorporation" class="iv-input form-control p-2"
|
||||
max="2006-01-11">
|
||||
max="2006-01-11" data-input>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="">Place Of Incorporation</label>
|
||||
@@ -217,21 +222,42 @@
|
||||
</div>
|
||||
@endsection
|
||||
@section('scripts')
|
||||
<script>
|
||||
$(function() {
|
||||
var dtToday = new Date();
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/flatpickr.js"></script>
|
||||
|
||||
var month = dtToday.getMonth() + 1; // jan=0; feb=1 .......
|
||||
var day = dtToday.getDate();
|
||||
var year = dtToday.getFullYear() - 18;
|
||||
if (month < 10)
|
||||
month = '0' + month.toString();
|
||||
if (day < 10)
|
||||
day = '0' + day.toString();
|
||||
var minDate = year + '-' + month + '-' + day;
|
||||
var maxDate = year + '-' + month + '-' + day;
|
||||
$('#dob').attr('max', maxDate);
|
||||
<script>
|
||||
// $(function() {
|
||||
// var dtToday = new Date();
|
||||
|
||||
// var month = dtToday.getMonth() + 1; // jan=0; feb=1 .......
|
||||
// var day = dtToday.getDate();
|
||||
// var year = dtToday.getFullYear() - 18;
|
||||
// if (month < 10)
|
||||
// month = '0' + month.toString();
|
||||
// if (day < 10)
|
||||
// day = '0' + day.toString();
|
||||
// var minDate = year + '-' + month + '-' + day;
|
||||
// var maxDate = year + '-' + month + '-' + day;
|
||||
// $('#dob').attr('max', maxDate);
|
||||
// });
|
||||
$(function() {
|
||||
var dtToday = new Date();
|
||||
var month = dtToday.getMonth() + 1; // jan=0; feb=1 .......
|
||||
var day = dtToday.getDate();
|
||||
var year = dtToday.getFullYear() - 18;
|
||||
if (month < 10)
|
||||
month = '0' + month.toString();
|
||||
if (day < 10)
|
||||
day = '0' + day.toString();
|
||||
var minDate = year + '-' + month + '-' + day;
|
||||
|
||||
$(".resetDate").flatpickr({
|
||||
wrap: true,
|
||||
weekNumbers: false,
|
||||
dateFormat: "d/m/Y",
|
||||
maxDate: "today", // set maxDate to today's date to disable future dates
|
||||
allowInput: true // allow manual input
|
||||
});
|
||||
});
|
||||
$(document).ready(function() {
|
||||
$.validator.addMethod("ValidEmail", function(value) {
|
||||
return /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(value);
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
@extends('Frontend.layouts.master')
|
||||
@section('style')
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/flatpickr.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/themes/dark.css">
|
||||
<style>
|
||||
.error {
|
||||
color: red !important
|
||||
@@ -50,8 +52,10 @@
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Date Of Birth</label>
|
||||
<input type="date" id="dob" name="dob" placeholder="Enter Date Of Birth" class="iv-input form-control p-2" max="2006-01-11">
|
||||
<div class="resetDate">
|
||||
<input type="text" name="dob" placeholder="Enter Date Of Birth" class="iv-input form-control p-2" max="2006-01-11" data-input>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Place Of Birth</label>
|
||||
<input type="text" id="place_of_birth" name="place_of_birth" placeholder="Enter Place Of Birth" onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)" class="iv-input form-control p-2">
|
||||
@@ -116,20 +120,20 @@
|
||||
</div>
|
||||
@endsection
|
||||
@section('scripts')
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/flatpickr.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
$(function() {
|
||||
var dtToday = new Date();
|
||||
|
||||
var month = dtToday.getMonth() + 1; // jan=0; feb=1 .......
|
||||
var day = dtToday.getDate();
|
||||
var year = dtToday.getFullYear() - 18;
|
||||
if (month < 10)
|
||||
month = '0' + month.toString();
|
||||
if (day < 10)
|
||||
day = '0' + day.toString();
|
||||
var minDate = year + '-' + month + '-' + day;
|
||||
var maxDate = year + '-' + month + '-' + day;
|
||||
$('#dob').attr('max', maxDate);
|
||||
var minDate = new Date(year, dtToday.getMonth(), dtToday.getDate());
|
||||
|
||||
$(".resetDate").flatpickr({
|
||||
wrap: true,
|
||||
weekNumbers: false,
|
||||
dateFormat: "d/m/Y",
|
||||
maxDate: minDate, // set maxDate to 18 years ago from today
|
||||
allowInput: true // allow manual input
|
||||
});
|
||||
});
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
@extends('Frontend.layouts.master')
|
||||
@section('style')
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/flatpickr.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/themes/dark.css">
|
||||
<style>
|
||||
.error {
|
||||
color: red !important
|
||||
@@ -41,19 +43,20 @@
|
||||
<label class="mandatory">Name</label>
|
||||
<input type="text" id="name" name="name" placeholder="Enter Name"
|
||||
onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)"
|
||||
class="iv-input form-control p-2" value="{{$user->name}}">
|
||||
class="iv-input form-control p-2" value="{{ $user->name }}">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Mobile Number</label>
|
||||
<input type="tel" id="mobile_number" name="mobile_number"
|
||||
placeholder="Enter Mobile Number" minlength="10" maxlength="10"
|
||||
oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*?)\..*/g, '$1');"
|
||||
class="contact-number iv-input form-control p-2" value="{{$user->contact_number}}">
|
||||
class="contact-number iv-input form-control p-2"
|
||||
value="{{ $user->contact_number }}">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Email ID</label>
|
||||
<input type="email" id="email" name="email" placeholder="Enter Email"
|
||||
class="iv-input form-control p-2" value="{{$user->email}}">
|
||||
class="iv-input form-control p-2" value="{{ $user->email }}">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="">Father's Name</label>
|
||||
@@ -71,8 +74,11 @@
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Date Of Birth</label>
|
||||
<input type="date" id="dob" name="dob"
|
||||
class="iv-input form-control p-2" max="2006-01-11">
|
||||
<div class="resetDate">
|
||||
<input type="text" name="dob"
|
||||
placeholder="Enter Date of Birth" class="iv-input form-control p-2"
|
||||
max="2006-01-11" data-input>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="">Place Of Birth</label>
|
||||
@@ -100,7 +106,8 @@
|
||||
accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory" for="email">Proof Of Address (Aadhar (Preferable)/Passport
|
||||
<label class="mandatory" for="email">Proof Of Address (Aadhar
|
||||
(Preferable)/Passport
|
||||
(Preferable)/Driving License/Voter ID/Ration
|
||||
Card/ElectricityBill/Gas Bill/Telephone Bill)</label>
|
||||
<input type="file" id="proof_of_address" name="proof_of_address"
|
||||
@@ -141,21 +148,22 @@
|
||||
</div>
|
||||
@endsection
|
||||
@section('scripts')
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/flatpickr.js"></script>
|
||||
|
||||
<script>
|
||||
$(function() {
|
||||
var dtToday = new Date();
|
||||
$(function() {
|
||||
var dtToday = new Date();
|
||||
var year = dtToday.getFullYear() - 18;
|
||||
var minDate = new Date(year, dtToday.getMonth(), dtToday.getDate());
|
||||
|
||||
var month = dtToday.getMonth() + 1; // jan=0; feb=1 .......
|
||||
var day = dtToday.getDate();
|
||||
var year = dtToday.getFullYear() - 18;
|
||||
if (month < 10)
|
||||
month = '0' + month.toString();
|
||||
if (day < 10)
|
||||
day = '0' + day.toString();
|
||||
var minDate = year + '-' + month + '-' + day;
|
||||
var maxDate = year + '-' + month + '-' + day;
|
||||
$('#dob').attr('max', maxDate);
|
||||
$(".resetDate").flatpickr({
|
||||
wrap: true,
|
||||
weekNumbers: false,
|
||||
dateFormat: "d/m/Y",
|
||||
maxDate: minDate, // set maxDate to 18 years ago from today
|
||||
allowInput: true // allow manual input
|
||||
});
|
||||
});
|
||||
|
||||
$(document).ready(function() {
|
||||
$.validator.addMethod("ValidEmail", function(value) {
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
@extends('Frontend.layouts.master')
|
||||
@section('style')
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/flatpickr.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/themes/dark.css">
|
||||
|
||||
<style>
|
||||
.error {
|
||||
color: red !important
|
||||
@@ -63,7 +66,9 @@
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Date Of Birth</label>
|
||||
<input type="date" id="dob" name="dob" placeholder="Enter Date Of Birth" class="iv-input form-control p-2" max="2006-01-11">
|
||||
<div class="resetDate">
|
||||
<input type="text" name="dob" placeholder="Enter Date Of Birth" class="iv-input form-control p-2" max="2006-01-11" data-input>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="">Place Of Birth</label>
|
||||
@@ -104,11 +109,11 @@
|
||||
name="proof_of_address_of_foreign" class="iv-input form-control p-2">
|
||||
</div>--}}
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory" for="occupation">Proof of Address (Foreign Country) [Utility Bill]</label>
|
||||
<label class="mandatory" for="occupation">Proof of Address (In India) [Utility Bill]</label>
|
||||
<input type="file" id="utility" name="utility" class="iv-input form-control p-2" accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory" for="occupation">Proof of Address (Foreign Country) [Rental Agreement]</label>
|
||||
<label class="mandatory" for="occupation">Proof of Address (In India) [Rental Agreement]</label>
|
||||
<input type="file" id="rental_agreement" name="rental_agreement" class="iv-input form-control p-2" accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
@@ -151,20 +156,21 @@
|
||||
</div>
|
||||
@endsection
|
||||
@section('scripts')
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/flatpickr.js"></script>
|
||||
|
||||
<script>
|
||||
$(function() {
|
||||
var dtToday = new Date();
|
||||
|
||||
var month = dtToday.getMonth() + 1; // jan=0; feb=1 .......
|
||||
var day = dtToday.getDate();
|
||||
var year = dtToday.getFullYear() - 18;
|
||||
if (month < 10)
|
||||
month = '0' + month.toString();
|
||||
if (day < 10)
|
||||
day = '0' + day.toString();
|
||||
var minDate = year + '-' + month + '-' + day;
|
||||
var maxDate = year + '-' + month + '-' + day;
|
||||
$('#dob').attr('max', maxDate);
|
||||
var minDate = new Date(year, dtToday.getMonth(), dtToday.getDate());
|
||||
|
||||
$(".resetDate").flatpickr({
|
||||
wrap: true,
|
||||
weekNumbers: false,
|
||||
dateFormat: "d/m/Y",
|
||||
maxDate: minDate, // set maxDate to 18 years ago from today
|
||||
allowInput: true // allow manual input
|
||||
});
|
||||
});
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
@extends('Frontend.layouts.master')
|
||||
@section('style')
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/flatpickr.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/themes/dark.css">
|
||||
|
||||
<style>
|
||||
.error {
|
||||
color: red !important
|
||||
@@ -58,8 +61,10 @@
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Date Of Birth</label>
|
||||
<input type="date" id="dob" name="dob" placeholder="Enter Date Of Birth" class="iv-input form-control p-2" max="2006-01-11">
|
||||
</div>
|
||||
<div class="resetDate">
|
||||
<input type="text" name="dob" placeholder="Enter Date Of Birth" class="iv-input form-control p-2" max="2006-01-11" data-input>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="">Place Of Birth</label>
|
||||
<input type="text" id="place_of_birth" name="place_of_birth" placeholder="Enter Place Of Birth" onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)" class="iv-input form-control p-2">
|
||||
@@ -133,19 +138,20 @@
|
||||
</div>
|
||||
@endsection
|
||||
@section('scripts')
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/flatpickr.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
var dtToday = new Date();
|
||||
var month = dtToday.getMonth() + 1; // jan=0; feb=1 .......
|
||||
var day = dtToday.getDate();
|
||||
var year = dtToday.getFullYear() - 18;
|
||||
if (month < 10)
|
||||
month = '0' + month.toString();
|
||||
if (day < 10)
|
||||
day = '0' + day.toString();
|
||||
var minDate = year + '-' + month + '-' + day;
|
||||
var maxDate = year + '-' + month + '-' + day;
|
||||
$('#dob').attr('max', maxDate);
|
||||
var minDate = new Date(year, dtToday.getMonth(), dtToday.getDate());
|
||||
|
||||
$(".resetDate").flatpickr({
|
||||
wrap: true,
|
||||
weekNumbers: false,
|
||||
dateFormat: "d/m/Y",
|
||||
maxDate: minDate, // set maxDate to 18 years ago from today
|
||||
allowInput: true // allow manual input
|
||||
});
|
||||
});
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
@extends('Frontend.layouts.master')
|
||||
@section('style')
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/flatpickr.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/themes/dark.css">
|
||||
|
||||
<style>
|
||||
.error {
|
||||
color: red !important
|
||||
@@ -71,10 +74,12 @@
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Date Of Birth</label>
|
||||
<input type="date" id="dob" name="dob"
|
||||
<div class="resetDate">
|
||||
<input type="text" name="dob"
|
||||
placeholder="Enter Date Of Birth" class="iv-input form-control p-2"
|
||||
max="2006-01-11">
|
||||
max="2006-01-11" data-input>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="">Place Of Birth</label>
|
||||
<input type="text" id="place_of_birth" name="place_of_birth"
|
||||
@@ -202,21 +207,22 @@
|
||||
</div>
|
||||
@endsection
|
||||
@section('scripts')
|
||||
<script>
|
||||
$(function() {
|
||||
var dtToday = new Date();
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.2.3/flatpickr.js"></script>
|
||||
|
||||
var month = dtToday.getMonth() + 1; // jan=0; feb=1 .......
|
||||
var day = dtToday.getDate();
|
||||
var year = dtToday.getFullYear() - 18;
|
||||
if (month < 10)
|
||||
month = '0' + month.toString();
|
||||
if (day < 10)
|
||||
day = '0' + day.toString();
|
||||
var minDate = year + '-' + month + '-' + day;
|
||||
var maxDate = year + '-' + month + '-' + day;
|
||||
$('#dob').attr('max', maxDate);
|
||||
<script>
|
||||
$(function() {
|
||||
var dtToday = new Date();
|
||||
var year = dtToday.getFullYear() - 18;
|
||||
var minDate = new Date(year, dtToday.getMonth(), dtToday.getDate());
|
||||
|
||||
$(".resetDate").flatpickr({
|
||||
wrap: true,
|
||||
weekNumbers: false,
|
||||
dateFormat: "d/m/Y",
|
||||
maxDate: minDate, // set maxDate to 18 years ago from today
|
||||
allowInput: true // allow manual input
|
||||
});
|
||||
});
|
||||
|
||||
$(document).ready(function() {
|
||||
$.validator.addMethod("ValidEmail", function(value) {
|
||||
|
||||
Reference in New Issue
Block a user