changes
This commit is contained in:
@@ -24,11 +24,15 @@
|
||||
<link href="{{ asset('source/css/font-awesome.css') }}" rel="stylesheet">
|
||||
<link href="{{ asset('source/css/flaticon.css') }}" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
|
||||
<link rel="stylesheet" href="https://unpkg.com/intl-tel-input@17.0.19/build/css/intlTelInput.min.css"/>
|
||||
|
||||
|
||||
<link href="https://arogin.thikeniraj.com.np/source/css/style.min.css" rel="stylesheet">
|
||||
<link href="https://arogin.thikeniraj.com.np/source/css/custom.css" rel="stylesheet">
|
||||
|
||||
<link href="{{ asset('source/css/custom.css') }}" rel="stylesheet">
|
||||
|
||||
|
||||
<!-- Responsive -->
|
||||
<link href="{{ asset('source/css/responsive.css') }}" rel="stylesheet">
|
||||
|
||||
@@ -54,6 +58,9 @@
|
||||
|
||||
@include('theme.spade.layouts.includes.footer')
|
||||
|
||||
<a class="whatsapp-icon" href="https://wa.me/{{ $generalSetting['mobile_number'] }}" target="_blank"><img src="https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg" alt="WhatsApp" />
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<!--End pagewrapper-->
|
||||
@@ -69,6 +76,29 @@
|
||||
<script src="{{ asset('source/js/googlemaps.min.js') }}"></script>
|
||||
<script src="{{ asset('source/js/script.min.js') }}"></script>
|
||||
<script src="https://maps.google.com/maps/api/js?sensor=true"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.19/js/intlTelInput.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.19/js/utils.min.js"></script>
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$(".phone-number").each(function() {
|
||||
var input = this;
|
||||
var iti = window.intlTelInput(this, {
|
||||
initialCountry: "auto",
|
||||
geoIpLookup: function(success, failure) {
|
||||
$.get("https://ipinfo.io", function() {}, "jsonp").always(function(resp) {
|
||||
var countryCode = (resp && resp.country) ? resp.country : "us";
|
||||
success(countryCode);
|
||||
});
|
||||
},
|
||||
separateDialCode: true
|
||||
});
|
||||
$(this).closest("form").on("submit", function(e) {
|
||||
$(input).val(iti.getNumber());
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
@stack('js')
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
Reference in New Issue
Block a user