2016-01-25 17:14:42 +01:00
|
|
|
<template name="forgotPassword">
|
|
|
|
|
<div id="forgotPassword" class="page entryPage" style="{{getOpacityWithCorner}}">
|
|
|
|
|
<div class="content-scrollable">
|
|
|
|
|
<div class="wrapper-auth">
|
|
|
|
|
<div class="entryLogo" style="background-image: url('{{getLogoUrl}}')"></div>
|
|
|
|
|
|
|
|
|
|
<h1 id="signInPageTitle" class="title-auth">Forgot Password</h1>
|
2016-03-16 15:28:07 +01:00
|
|
|
<div id="signInPageMessage" class="subtitle-auth" >Improve your clinical practice with checklists.</div>
|
|
|
|
|
<p id="signInPageMessage" class="subtitle-auth" style="{{getForgotPasswordMessageColor}}">{{{getForgotPasswordMessage}}}</p>
|
2016-01-25 17:14:42 +01:00
|
|
|
|
|
|
|
|
<form>
|
|
|
|
|
<div class="input-symbol">
|
|
|
|
|
<input id="signInPageEmailInput" type="email" name="email" placeholder="Your Email" style="{{getForgotPasswordStyle}}" />
|
|
|
|
|
<i class="fa fa-envelope-o" title="Your Email"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<br><br>
|
|
|
|
|
|
|
|
|
|
<button id="sendReminderButton" type="submit" class="btn-gray btn-main btn-large" style="{{getButtonColor}}">Send Reminder</button><br><br>
|
2016-03-16 15:28:07 +01:00
|
|
|
{{#if forgotPasswordNotification}}
|
|
|
|
|
<div class="alert alert-success">
|
|
|
|
|
{{{forgotPasswordNotification}}}
|
|
|
|
|
</div>
|
|
|
|
|
{{/if}}
|
2016-01-25 17:14:42 +01:00
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
2016-03-16 15:28:07 +01:00
|
|
|
|
|
|
|
|
<template name="resetPassword">
|
|
|
|
|
{{#if resetPassword}}
|
|
|
|
|
<div id="resetPassword" class="page entryPage" style="{{getOpacityWithCorner}}">
|
|
|
|
|
<div class="content-scrollable">
|
|
|
|
|
<div class="wrapper-auth">
|
|
|
|
|
<div class="entryLogo" style="background-image: url('{{getLogoUrl}}')"></div>
|
|
|
|
|
|
|
|
|
|
<h1 id="signInPageTitle" class="title-auth">Reset Password</h1>
|
|
|
|
|
<div id="signInPageMessage" class="subtitle-auth" >Improve your clinical practice with checklists.</div>
|
|
|
|
|
|
|
|
|
|
<form>
|
|
|
|
|
{{#if resetPasswordErrorMessages}}
|
|
|
|
|
<div id="errorMessages" class="list-errors">
|
|
|
|
|
{{#each resetPasswordErrorMessages}}
|
|
|
|
|
<div class="alert alert-danger list-item">{{this}}</div>
|
|
|
|
|
{{/each}}
|
|
|
|
|
</div>
|
|
|
|
|
{{/if}}
|
|
|
|
|
<div class="input-symbol ">
|
|
|
|
|
<input id="resetPasswordInput" type="password" name="password" placeholder="Password" style="{{getPasswordStyling}}" />
|
|
|
|
|
<span class="fa fa-lock" title="Password"></span>
|
|
|
|
|
<!-- <span class="icon-lock" title="Password"></span> -->
|
|
|
|
|
</div>
|
|
|
|
|
<br>
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
|
|
<div class="input-symbol">
|
|
|
|
|
<input id="resetPasswordConfirmInput" type="password" name="confirm" placeholder="Confirm Password" style="{{getConfirmPasswordStyling}}" />
|
|
|
|
|
<span class="fa fa-lock" title="Confirm Password"></span>
|
|
|
|
|
<!-- <span class="icon-lock" title="Confirm Password"></span> -->
|
|
|
|
|
</div>
|
|
|
|
|
<br>
|
|
|
|
|
<br>
|
|
|
|
|
</form>
|
|
|
|
|
<button id="resetPasswordButton" type="submit" class="btn-gray btn-main btn-large" style="{{getButtonColor}}">Reset Password</button><br><br>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</template>
|