All files / app/pages/forgot-password-page forgot-password-page.component.html

100% Statements 28/28
100% Branches 2/2
100% Functions 1/1
100% Lines 28/28

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 291x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
<grt-header-element
	[showReqCall]="false"
	[showTrips]="true"
	[indexPage]="false"
	[showCustReview]="true"
	[showContactUs]="true"
></grt-header-element>
<div class="forgot container-fluid">
	<div class="inner is-smaller">
		<h1 class="center">Forgot your password?</h1>
		<h6 class="center">Enter your E-mail</h6>
		<form action="" [formGroup]="form.formData" class="form">
			<div class="input">
				<input
					type="email"
					name=""
					formControlName="email"
					placeholder="Your E-mail"
					[ngClass]="{
						'input-error': form.getErrors('email')?.length > 0,
					}"
				/>
				<app-validation-errors [errors]="form.getErrors('email')"></app-validation-errors>
			</div>
			<button (click)="forgot()" class="btn btn-green form__submit wide uppercase">Send</button>
		</form>
	</div>
</div>