member_webapp/@overflow/member/component/member-reset-password.component.html

46 lines
2.4 KiB
HTML
Raw Normal View History

2018-05-30 07:44:21 +00:00
<div class="ui-g" *ngIf="!member">
2018-05-30 06:13:37 +00:00
<div class="ui-g-12">
2018-05-30 07:44:21 +00:00
<form [formGroup]="resetPasswordForm" (ngSubmit)="resetPasswordSubmit()">
2018-05-16 08:14:43 +00:00
<table class="login-table">
<tr>
<td>
<div class="login-panel ui-fluid">
<div class="ui-g">
<div class="ui-g-12">
<!--img src="assets/layout/images/logo-ultima.svg" -->
<img src="assets/layout/images/overFlow_CI_blue_185.png">
</div>
<div class="ui-g-12">
<span class="md-inputfield">
<input type="email" id="email" autocomplete="off" placeholder="Please enter your email" formControlName="email" required class="ui-inputtext ui-corner-all ui-state-default ui-widget">
</span>
2018-05-30 05:52:39 +00:00
<div *ngIf="email.touched && !email.valid" class="ui-message ui-messages-error ui-corner-all">
Invalid email
2018-05-16 08:14:43 +00:00
</div>
</div>
2018-05-29 09:32:22 +00:00
2018-05-16 08:14:43 +00:00
<div class="ui-g-12">
2018-05-30 07:44:21 +00:00
<button
[disabled]="!resetPasswordForm.valid"
type="submit" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-icon-left">
2018-05-16 08:14:43 +00:00
<span class="ui-button-icon-left ui-c fa fa-fw ui-icon-cached"></span>
<span class="ui-button-text ui-c">Reset Password</span>
</button>
2018-05-29 09:32:22 +00:00
2018-05-30 07:44:21 +00:00
<a style="cursor: pointer" (click)="onSignin()">Sign In</a>
2018-05-16 08:14:43 +00:00
|
2018-05-30 07:44:21 +00:00
<a style="cursor: pointer" (click)="onSignup()">Sign Up</a>
2018-05-03 12:30:32 +00:00
</div>
</div>
2018-05-16 08:14:43 +00:00
</div>
</td>
</tr>
</table>
</form>
</div>
2018-05-29 09:32:22 +00:00
</div>
2018-05-30 07:44:21 +00:00
<div class="ui-g" *ngIf="member">
I sent an authentication mail to the mail address you registered. Please check and change your password.
</div>