diff --git a/Client/src/app/components/members/member-detail/member-detail.component.html b/Client/src/app/components/members/member-detail/member-detail.component.html index 342e489..67deffe 100644 --- a/Client/src/app/components/members/member-detail/member-detail.component.html +++ b/Client/src/app/components/members/member-detail/member-detail.component.html @@ -31,25 +31,25 @@
- - -

Description

-

{{user.introduction}}

-

Interested In

-

{{user.lookingFor}}

-
- -

Interests

-

{{user.interests}}

-
- - - - + + +

Description

+

{{user.introduction}}

+

Interested In

+

{{user.lookingFor}}

+
+ +

Interests

+

{{user.interests}}

+
+ + + + - -
-
+ + +
diff --git a/Client/src/app/components/register/register.component.html b/Client/src/app/components/register/register.component.html index 82c15ca..a7e48d1 100644 --- a/Client/src/app/components/register/register.component.html +++ b/Client/src/app/components/register/register.component.html @@ -3,11 +3,23 @@

Sign Up


- + +
Please choose a username
- + +
Password is required
+
Password must be at least 4 characters
+
Password cannot be over 10 characters
diff --git a/Client/src/app/components/register/register.component.ts b/Client/src/app/components/register/register.component.ts index fb0f09e..2a0c31d 100644 --- a/Client/src/app/components/register/register.component.ts +++ b/Client/src/app/components/register/register.component.ts @@ -19,7 +19,7 @@ export class RegisterComponent implements OnInit { ngOnInit() { this.registerForm = new FormGroup({ username: new FormControl('', Validators.required), - password: new FormControl('', [Validators.required, Validators.minLength(4), Validators.maxLength(8)]), + password: new FormControl('', [Validators.required, Validators.minLength(4), Validators.maxLength(10)]), confirmPassword: new FormControl('', Validators.required) }, this.passwordConfirmationValidator); } @@ -39,7 +39,7 @@ export class RegisterComponent implements OnInit { return null; } - return {'mismatch: true'}; + return {'mismatch': true}; } cancel() { diff --git a/Client/src/styles.css b/Client/src/styles.css index 4f9026d..c58e7a2 100644 --- a/Client/src/styles.css +++ b/Client/src/styles.css @@ -13,9 +13,8 @@ } .member-tabset > .tab-content { - margin-top: -3px; background-color: #fff; border: 0; border-top: 1px solid #eee; - padding: 15px 0; + padding: 15px; }