diff --git a/src/app/app.component.scss b/src/app/app.component.scss
index 66e21de..63bd798 100644
--- a/src/app/app.component.scss
+++ b/src/app/app.component.scss
@@ -24,4 +24,9 @@
display: block;
background-color: rgb(229, 230, 218);
box-shadow : 0px 0px 2px 0px #d6d2d2
+}
+
+.appbar,
+.k-appbar-sticky{
+ z-index: 1000;
}
\ No newline at end of file
diff --git a/src/app/auth/auth.component.html b/src/app/auth/auth.component.html
index 8295fec..b9ad505 100644
--- a/src/app/auth/auth.component.html
+++ b/src/app/auth/auth.component.html
@@ -6,7 +6,7 @@
-
+
Error: Email is required
@@ -16,7 +16,8 @@
-
+
Error: Password is required
diff --git a/src/app/auth/auth.component.ts b/src/app/auth/auth.component.ts
index 412cd22..8fca6ea 100644
--- a/src/app/auth/auth.component.ts
+++ b/src/app/auth/auth.component.ts
@@ -12,8 +12,8 @@ import { MenuService } from '../service/menu.service';
export class AuthComponent implements OnInit {
public userForm: FormGroup = new FormGroup({
- password: new FormControl('', [Validators.minLength(3), Validators.maxLength(20)]),
- email: new FormControl('', Validators.email)
+ password: new FormControl('abcdefg', [Validators.minLength(3), Validators.maxLength(20)]),
+ email: new FormControl('email@email.com', Validators.email)
});
constructor(private menuService: MenuService, private rounter: Router) { }
diff --git a/src/app/auth/dist/auth.component.js b/src/app/auth/dist/auth.component.js
index ea94eb7..a3b807d 100644
--- a/src/app/auth/dist/auth.component.js
+++ b/src/app/auth/dist/auth.component.js
@@ -14,8 +14,8 @@ var AuthComponent = /** @class */ (function () {
this.menuService = menuService;
this.rounter = rounter;
this.userForm = new forms_1.FormGroup({
- password: new forms_1.FormControl('', [forms_1.Validators.minLength(3), forms_1.Validators.maxLength(20)]),
- email: new forms_1.FormControl('', forms_1.Validators.email)
+ password: new forms_1.FormControl('abcdefg', [forms_1.Validators.minLength(3), forms_1.Validators.maxLength(20)]),
+ email: new forms_1.FormControl('email@email.com', forms_1.Validators.email)
});
}
AuthComponent.prototype.ngOnInit = function () {