Files
backend/resources/views/rmto-preview/pages/road_patrol.blade.php
2024-02-01 09:53:53 +00:00

107 lines
6.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="csrf-token" content="{{ csrf_token() }}" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="../dist/images/modalrms/RMSLOGO1.svg" type="image/icon" sizes="16x16">
<title>ثبت گشت راهداری و ترابری</title>
<link rel="stylesheet" href="../plugins/fontawesome-free/css/all.min.css" />
<link rel="stylesheet" href="../dist/css/adminlte.css" />
<link rel="stylesheet" href="../dist/css/fontiran.css" />
<!-- map links -->
<link rel="stylesheet" href="../dist/css/leaflet.css" />
<!-- date picker link -->
<link rel="stylesheet" href="../dist/css/persian-datepicker.min.css" />
<!-- footer link -->
<link rel="stylesheet" href="../dist/css/footer.css" />
<!-- full style of pages -->
<link rel="stylesheet" href="../dist/css/fullstyle.css">
<!-- this page styles -->
<link rel="stylesheet" href="../dist/css/road_patrol.css?_={{ mt_rand(1, 99999999999) }}" />
</head>
<body>
<div class="divloader">
<span class="loader"><span class="loader-inner"></span></span>
</div>
@include('layouts.header')
<div class="main-box">
<div class="map" id="map"></div>
<div class="iran-change-layer"><img src="../dist/images/iran.svg" data-toggle="tooltip" data-placement="right" title="لایه ها"></div>
</div>
<!-- all modals -->
<!-- take number -->
<div class="modal fade" id="phoneNumber_modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">تایید هویت</h5>
</div>
<div class="modal-body">
<div class="form-group">
<label for="accept_number">شماره تلفن همراه</label>
<span class="attent-num mr-1" style="color: crimson; font-size: 11px;">(شماره تماس باید یازده رقم باشد)</span>
<input type="number" class="form-control phone-is-correct" id="accept_number" value="09" maxlength="11"
onkeypress="return event.charCode >= 46;" onkeyup="phone_checker($(this));"
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);
if(this.value.slice(0 , 2) != '09'){this.value = '09'}" placeholder="شماره خود را وارد کنید">
<small class="perv-number-parent form-text text-muted d-none">شماره ثبت شده فعلی (<span class="perv-number" style="color: crimson; font-size: 11px;"></span>)</small>
</div>
</div>
<div class="modal-footer">
<button id="send_conf_code_cta" type="button" class="btn btn-primary">دریافت کد</button>
</div>
</div>
</div>
</div>
<!-- end take number -->
<!-- confirmation code-->
<div class="modal fade" id="acceptCode_modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">تایید هویت</h5>
</div>
<div class="modal-body">
<div class="form-group">
<div class="d-flex justify-content-around">
<input type="text" maxlength="1" oninput="this.value=this.value.replace(/[^0-9]/g,'');" class="accept-number input-text-cleaner form-control p-1">
<input type="text" maxlength="1" oninput="this.value=this.value.replace(/[^0-9]/g,'');" class="accept-number input-text-cleaner form-control p-1">
<input type="text" maxlength="1" oninput="this.value=this.value.replace(/[^0-9]/g,'');" class="accept-number input-text-cleaner form-control p-1">
<input type="text" maxlength="1" oninput="this.value=this.value.replace(/[^0-9]/g,'');" class="accept-number input-text-cleaner form-control p-1">
</div>
</div>
</div>
<div class="modal-footer">
<button id="back_phoneNumber" type="button" class="btn btn-warning text-white">تغییر شماره</button>
<button id="check_code_cta" type="button" class="btn btn-primary">بررسی</button>
</div>
</div>
</div>
</div>
<!-- end confirmation code-->
<!-- end all modals -->
@include('layouts.footer')
<!-- jQuery -->
<script src="../plugins/jquery/jquery.min.js"></script>
<!-- header js -->
<script src="../dist/js/header.js"></script>
<!-- bootstrap js -->
<script src="../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- sweetalert2 js -->
<script src="../dist/js/sweetalert2js.js"></script>
<!-- map scripts -->
<script src="../dist/js/leaflet.js"></script>
<script src="../dist/js/leaflet-routing-machine.js"></script>
<!-- input mask -->
<script src="../plugins/inputmask/min/jquery.inputmask.bundle.min.js"></script>
<!-- date picker script -->
<script src="../dist/js/persian-datepicker.min.js"></script>
<script src="../dist/js/persian-date.min.js"></script>
<!-- moment & jalali -->
<script src="../plugins/moment/moment.min.js"></script>
<script src="../dist/js/jalali-moment.browser.js"></script>
<!-- this page script -->
<script src="../dist/js/road_patrol.js?_={{ mt_rand(1, 99999999999) }}"></script>
</body>
</html>