17 lines
444 B
HTML
17 lines
444 B
HTML
<template name="atPwdForm">
|
|
<div class="at-pwd-form">
|
|
<form role="form" id="at-pwd-form" class="{{disabled}} pure-form pure-form-aligned" novalidate action="#" method="POST">
|
|
{{#each fields}}
|
|
{{> atInput}}
|
|
{{/each}}
|
|
{{#if showReCaptcha}}
|
|
{{> atReCaptcha}}
|
|
{{/if}}
|
|
{{#if showForgotPasswordLink}}
|
|
{{> atPwdLink}}
|
|
{{/if}}
|
|
{{> atPwdFormBtn}}
|
|
</form>
|
|
</div>
|
|
</template>
|