2017-12-31 14:06:46 -08:00
|
|
|
<template name="OverrideAtForm">
|
|
|
|
|
{{#unless hide}}
|
|
|
|
|
<div class="at-form">
|
|
|
|
|
<!--{{#if showTitle}}-->
|
|
|
|
|
<!--{{> atTitle}}-->
|
|
|
|
|
<!--{{/if}}-->
|
|
|
|
|
{{#if showOauthServices}}
|
|
|
|
|
{{> atOauth}}
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#if showServicesSeparator}}
|
|
|
|
|
{{> atSep}}
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#if showError}}
|
|
|
|
|
{{> atError}}
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#if showResult}}
|
|
|
|
|
{{> atResult}}
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#if showMessage}}
|
|
|
|
|
{{> atMessage}}
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#if showPwdForm}}
|
|
|
|
|
{{> OverrideAtPwdForm}}
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#if showTermsLink}}
|
|
|
|
|
{{> atTermsLink}}
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#if showSignInLink}}
|
|
|
|
|
{{> atSigninLink}}
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#if showSignUpLink}}
|
|
|
|
|
{{> atSignupLink}}
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#if showResendVerificationEmailLink}}
|
|
|
|
|
{{> atResendVerificationEmailLink}}
|
|
|
|
|
{{/if}}
|
2017-01-15 11:33:37 -08:00
|
|
|
</div>
|
2017-12-31 14:06:46 -08:00
|
|
|
{{/unless}}
|
2017-01-15 11:33:37 -08:00
|
|
|
</template>
|
|
|
|
|
|
2017-12-31 14:06:46 -08:00
|
|
|
<template name="OverrideAtPwdForm">
|
2017-01-15 11:33:37 -08:00
|
|
|
<div class="at-pwd-form">
|
2017-12-31 14:06:46 -08:00
|
|
|
<form role="form" id="at-pwd-form" novalidate action="#" method="POST">
|
|
|
|
|
<fieldset {{disabled}}>
|
|
|
|
|
{{#each fields}}
|
|
|
|
|
{{> atInput}}
|
|
|
|
|
{{/each}}
|
|
|
|
|
{{#if showReCaptcha}}
|
|
|
|
|
{{> atReCaptcha}}
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{> atPwdFormBtn}}
|
|
|
|
|
{{#if showForgotPasswordLink}}
|
|
|
|
|
{{> atPwdLink}}
|
|
|
|
|
{{/if}}
|
|
|
|
|
</fieldset>
|
2017-01-15 11:33:37 -08:00
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|