mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
24 lines
No EOL
1.2 KiB
HTML
24 lines
No EOL
1.2 KiB
HTML
<template name="userInfoModal">
|
|
<div id="userInfoModal" class="modal modal-fixed-footer">
|
|
<div class="modal-content">
|
|
<div>
|
|
<h4>Password Reset</h4>
|
|
</div>
|
|
<form class="row" style="gap: 1em;">
|
|
<div class="col s12 m6 l6 input-field outlined">
|
|
<input type="password" class="newPass" id="newPass" />
|
|
<label for="newPass">Enter New Password</label>
|
|
</div>
|
|
<div class="col s12 m6 l6 input-field outlined">
|
|
<input type="password" class="newPassConf {{#if $eq passMatch false}}red lighten-3{{/if}}" id="newPassConf" />
|
|
<label for="newPassConf">Enter New Password</label>
|
|
{{#if $eq passMatch false}}<p class="red-text">Passwords do not match!</p>{{/if}}
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<a class="modal-close btn waves-effect waves-light filled orange white-text">Cancel</a>
|
|
<a id="chPass" class="btn waves-effect waves-light filled green white-text modal-close">Change Password</a>
|
|
</div>
|
|
</div>
|
|
</template> |