diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index 25bb879908d..070b339769a 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -4,6 +4,7 @@ import {
Routes,
} from '@angular/router';
+import { HintComponent } from './accounts/hint.component';
import { LoginComponent } from './accounts/login.component';
import { RegisterComponent } from './accounts/register.component';
import { VaultComponent } from './vault/vault.component';
@@ -13,6 +14,7 @@ const routes: Routes = [
{ path: 'login', component: LoginComponent },
{ path: 'register', component: RegisterComponent },
{ path: 'vault', component: VaultComponent },
+ { path: 'hint', component: HintComponent },
];
@NgModule({
diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 11f8bcc1fea..51ba056c068 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -21,6 +21,7 @@ import { CiphersComponent } from './vault/ciphers.component';
import { FallbackSrcDirective } from './directives/fallback-src.directive';
import { FolderAddEditComponent } from './vault/folder-add-edit.component';
import { GroupingsComponent } from './vault/groupings.component';
+import { HintComponent } from './accounts/hint.component';
import { I18nPipe } from './pipes/i18n.pipe';
import { IconComponent } from './vault/icon.component';
import { LoginComponent } from './accounts/login.component';
@@ -58,6 +59,7 @@ import { ViewComponent } from './vault/view.component';
FallbackSrcDirective,
FolderAddEditComponent,
GroupingsComponent,
+ HintComponent,
I18nPipe,
IconComponent,
LoginComponent,
diff --git a/src/scss/pages.scss b/src/scss/pages.scss
index 8e1ccfd4fd2..ea562c05080 100644
--- a/src/scss/pages.scss
+++ b/src/scss/pages.scss
@@ -15,9 +15,15 @@
height: calc(100% + 300px);
margin-top: -300px;
}
+
+ img {
+ margin: 0 auto 15px;
+ width: 282px;
+ display: block;
+ }
}
-#register {
+#register, #hint {
margin-top: 20px;
.content {
@@ -25,20 +31,15 @@
}
}
-#login, #register {
+#login, #register, #hint {
.content {
max-width: 300px;
- img {
- margin: 0 auto 15px;
- width: 282px;
- display: block;
- }
-
- p {
+ p, h1 {
font-size: $font-size-large;
text-align: center;
margin-bottom: 20px;
+ font-weight: normal;
}
.box {