diff --git a/templates/app/angular/src/app/home/home.component.html b/templates/app/angular/src/app/home/home.component.html new file mode 100644 index 0000000000..ca2ebda8c5 --- /dev/null +++ b/templates/app/angular/src/app/home/home.component.html @@ -0,0 +1,16 @@ +
+
Welcome
+
+

+ Welcome to the application. This is a startup project based on the ABP framework. For more information, visit + abp.io. +

+

+ {{ 'AbpIdentity::Login' | abpLocalization }} +

+
+

abp.io

+
+
diff --git a/templates/app/angular/src/app/home/home.component.ts b/templates/app/angular/src/app/home/home.component.ts index cd815a9e2b..aa56d34131 100644 --- a/templates/app/angular/src/app/home/home.component.ts +++ b/templates/app/angular/src/app/home/home.component.ts @@ -3,24 +3,7 @@ import { OAuthService } from 'angular-oauth2-oidc'; @Component({ selector: 'abp-home', - template: ` -
-
Welcome
-
-

- Welcome to the application. This is a startup project based on the ABP framework. For more information, visit - abp.io. -

-

- {{ 'AbpIdentity::Login' | abpLocalization }} -

-
-

abp.io

-
-
- `, + templateUrl: './home.component.html', }) export class HomeComponent { get hasLoggedIn(): boolean {