ing
This commit is contained in:
@@ -6,6 +6,8 @@ import { MemberModifyPasswordComponent } from './member-modify-password.componen
|
||||
import { MemberProfileComponent } from './member-profile.component';
|
||||
import { MemberPolicyComponent } from './member-policy.component';
|
||||
import { MemberTotpComponent } from './member-totp.component';
|
||||
import { MemberConfirmResetPasswordComponent } from './member-confirm-reset-password.component';
|
||||
import { MemberConfirmSignupComponent } from './member-confirm-signup.component';
|
||||
|
||||
export const COMPONENTS = [
|
||||
MemberSigninComponent,
|
||||
@@ -16,4 +18,6 @@ export const COMPONENTS = [
|
||||
MemberModifyPasswordComponent,
|
||||
MemberPolicyComponent,
|
||||
MemberTotpComponent,
|
||||
MemberConfirmResetPasswordComponent,
|
||||
MemberConfirmSignupComponent,
|
||||
];
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
<div>
|
||||
Your email has been verified. When you click the link button below, it goes to the password change screen.
|
||||
</div>
|
||||
@@ -0,0 +1,11 @@
|
||||
import {Component, OnInit} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'of-member-confirm-reset-password',
|
||||
templateUrl: './member-confirm-reset-password.component.html',
|
||||
})
|
||||
export class MemberConfirmResetPasswordComponent implements OnInit {
|
||||
constructor() { }
|
||||
ngOnInit(): void {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
<div>
|
||||
Your email has been verified. Go to signin when you click the link button below.
|
||||
</div>
|
||||
@@ -0,0 +1,11 @@
|
||||
import {Component, OnInit} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'of-member-confirm-signup',
|
||||
templateUrl: './member-confirm-signup.component.html',
|
||||
})
|
||||
export class MemberConfirmSignupComponent implements OnInit {
|
||||
constructor() { }
|
||||
ngOnInit(): void {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user