-
-
Registration confirmation
-
-
- We have sent you a confirmation email, please visit your inbox and confirm by clicking the confirmation link.
-
-
-
- Thank you for confirming your email, please Login now.
-
-
#
\ No newline at end of file
diff --git a/src/AspNetCoreSpa.Web/ClientApp/src/app/account/+register/+confirmation/register-confirmation.component.ts b/src/AspNetCoreSpa.Web/ClientApp/src/app/account/+register/+confirmation/register-confirmation.component.ts
deleted file mode 100644
index 80d02c47..00000000
--- a/src/AspNetCoreSpa.Web/ClientApp/src/app/account/+register/+confirmation/register-confirmation.component.ts
+++ /dev/null
@@ -1,27 +0,0 @@
-import { Component, OnInit, OnDestroy } from '@angular/core';
-import { Router, ActivatedRoute } from '@angular/router';
-
-@Component({
- selector: 'appc-register-confirmation',
- templateUrl: './register-confirmation.component.html'
-})
-export class RegisterConfirmationComponent implements OnInit, OnDestroy {
- public emailConfirmed: boolean;
- public sub: any;
-
- constructor(public router: Router, public route: ActivatedRoute) { }
-
- public ngOnInit() {
- this.sub = this.router
- .routerState.root
- .queryParams
- .subscribe((params: any) => {
- this.emailConfirmed = (params.emailConfirmed && params.emailConfirmed.toLowerCase() === 'true');
- });
-
- }
-
- public ngOnDestroy() {
- this.sub.unsubscribe();
- }
-}
diff --git a/src/AspNetCoreSpa.Web/ClientApp/src/app/account/+register/+register/register.component.html b/src/AspNetCoreSpa.Web/ClientApp/src/app/account/+register/+register/register.component.html
deleted file mode 100644
index 8e0649bf..00000000
--- a/src/AspNetCoreSpa.Web/ClientApp/src/app/account/+register/+register/register.component.html
+++ /dev/null
@@ -1,8 +0,0 @@
-