This commit is contained in:
geek
2018-05-30 21:04:53 +09:00
parent ea812f6e54
commit 7d17ca4880
15 changed files with 98 additions and 5 deletions

View File

@@ -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,
];

View File

@@ -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>

View File

@@ -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 {
}
}

View File

@@ -0,0 +1,3 @@
<div>
Your email has been verified. Go to signin when you click the link button below.
</div>

View File

@@ -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 {
}
}