30 lines
1.2 KiB
HTML
30 lines
1.2 KiB
HTML
<ion-view class="forgot-password-view auth-view" cache-view="false">
|
|
<ion-content scroll="false">
|
|
<div class="row">
|
|
<div class="col col-center">
|
|
<div class="card forgot-password-container">
|
|
<form name="forgot_password_form" class="" novalidate>
|
|
<div class="item item-body">
|
|
<label class="item item-input">
|
|
<input type="email" placeholder="Email" name="user_email" ng-model="user.email" required>
|
|
</label>
|
|
</div>
|
|
<div class="item item-body bottom-content">
|
|
<button type="submit" class="button button-positive button-block" ng-click="recoverPassword()" ng-disabled="forgot_password_form.$invalid">
|
|
Recover it
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="alternative-actions">
|
|
<a class="log-in button button-small button-clear button-light" ui-sref="auth.login">
|
|
Log In
|
|
</a>
|
|
<a class="sign-up button button-small button-clear button-light" ui-sref="auth.signup">
|
|
Sign Up
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</ion-content>
|
|
</ion-view>
|