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.
44 lines
1.9 KiB
44 lines
1.9 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- This is a template for displaying PIN input for user authentication. -->
|
|
<template id="forgot_pin_template" name="Forgot PIN">
|
|
<br/>
|
|
<h3 style="align:left;">Forgot Pin</h3>
|
|
<br/>
|
|
<div class="col-12 col-lg-13 o_setting_box"
|
|
style="float:top max-width:600px;">
|
|
<form class="change_pin_form" role="form" action="">
|
|
<input type="hidden" name="csrf_token"
|
|
t-att-value="request.csrf_token()"/>
|
|
<div class="col-12 col-lg-6 o_setting_box" id="change_pin_div">
|
|
<label for="new_pswd" class="form-label">Enter New Password</label>
|
|
<input type="password"
|
|
placeholder="Enter your new password here"
|
|
name="password"
|
|
id="new_pswd"
|
|
required="required" autofocus="autofocus"
|
|
autocapitalize="off" class="form-control mb-3"/>
|
|
<label for="new_confirm_pswd" class="form-label">Confirm Password</label>
|
|
<input type="password"
|
|
placeholder="Confirm your password "
|
|
name="confirm password"
|
|
class="form-control mb-3"
|
|
id="new_confirm_pswd" autofocus="autofocus"
|
|
required="required"
|
|
autocapitalize="off"/>
|
|
<button type="submit" class="btn btn-primary"
|
|
id="forgot_pin_submit" >Set
|
|
Pin
|
|
</button>
|
|
<button type="button" class="btn btn-primary"
|
|
id="go_back_submit" >Go Back
|
|
</button>
|
|
</div>
|
|
<p class="alert alert-danger wrong_forgot_pin d-none"
|
|
role="alert">
|
|
<span>Wrong/Login Password</span>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</template>
|
|
</odoo>
|
|
|