You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
2.3 KiB
48 lines
2.3 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<templates xml:space="preserve">
|
|
<!--security pin modal dialog box template-->
|
|
<t t-name="menuLockPopup"
|
|
owl="1">
|
|
<div class="row justify-center q-pa-lg modal-dialog">
|
|
<div class="row modal-content"
|
|
style="background-color: #71639e;z-index:15;">
|
|
<form class="modal-body">
|
|
<div class="form-group">
|
|
<div style="background-color: white;">
|
|
<header class="modal-header">
|
|
<h4 class="modal-title">Menu Security PIN</h4>
|
|
</header>
|
|
</div>
|
|
<div class="position-relative">
|
|
<input type="password" class="link-style password"
|
|
id="password" t-ref="password"
|
|
placeholder="Enter Password"/>
|
|
<i class="fa fa-eye toggle_eye" t-on-click="showPassword"/>
|
|
</div>
|
|
</div>
|
|
<div class="menu_warning d-none" t-ref="menu_warn">
|
|
<div id="wrap">
|
|
<div class="container">
|
|
<div class="col-md-12">
|
|
<div class="alert alert-danger">
|
|
Wrong Password !!!!
|
|
Please enter correct password.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<footer style="margin-top:80px">
|
|
<button string="Save" special="save"
|
|
class="btn-secondary" t-on-click.prevent="Confirm"
|
|
style="height:40px;width:100px;">Confirm</button>
|
|
<button string="Discard" class="btn-secondary"
|
|
aria-label="Cancel" special="cancel"
|
|
t-on-click="CancelDialog"
|
|
style="height:40px;width:100px;">Cancel</button>
|
|
</footer>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</templates>
|
|
|