File tree Expand file tree Collapse file tree 9 files changed +36
-16
lines changed Expand file tree Collapse file tree 9 files changed +36
-16
lines changed Original file line number Diff line number Diff line change 13
13
</ md-input-container >
14
14
</ div >
15
15
16
- < md-button type ="submit " class ="LoginForm-submit md-primary md-raised "> Login </ md-button >
16
+ < md-button type ="submit " class ="LoginForm-submit md-primary md-raised "> Log in </ md-button >
17
17
</ form >
Original file line number Diff line number Diff line change 8
8
.LoginForm-submit {
9
9
margin-bottom : 40px ;
10
10
margin-left : 0 ;
11
+ width : 100% ;
12
+ padding : 5px 0 ;
11
13
}
Original file line number Diff line number Diff line change 1
1
< form ng-submit ="vm.register() ">
2
2
< div >
3
- < md-input-container >
3
+ < md-input-container class =" RegisterForm-inputContainer " >
4
4
< label > Name</ label >
5
5
< input type ="text " ng-model ="vm.name ">
6
6
</ md-input-container >
7
7
</ div >
8
8
9
9
< div >
10
- < md-input-container >
10
+ < md-input-container class =" RegisterForm-inputContainer " >
11
11
< label > Email</ label >
12
12
< input type ="email " ng-model ="vm.email ">
13
13
</ md-input-container >
14
14
</ div >
15
15
16
16
< div >
17
- < md-input-container >
17
+ < md-input-container class =" RegisterForm-inputContainer " >
18
18
< label > Password</ label >
19
19
< input type ="password " ng-model ="vm.password ">
20
20
</ md-input-container >
21
21
</ div >
22
22
23
- < md-button type ="submit " class ="md-primary md-raised "> Register</ md-button >
23
+ < md-button type ="submit " class ="RegisterForm-submit md-primary md-raised "> Register</ md-button >
24
24
</ form >
Original file line number Diff line number Diff line change
1
+ .RegisterForm-inputContainer {
2
+ margin-top : 10px ;
3
+ margin-bottom : 0px ;
4
+ width : 80% ;
5
+ min-width : 300px ;
6
+ }
7
+
8
+ .RegisterForm-submit {
9
+ margin-bottom : 40px ;
10
+ margin-left : 0 ;
11
+ width : 100% ;
12
+ padding : 5px 0 ;
13
+ }
Original file line number Diff line number Diff line change 1
1
.Login-formContainer {
2
- margin-top : 40 px ;
3
- margin-bottom : 40 px ;
2
+ margin-top : 80 px ;
3
+ margin-bottom : 80 px ;
4
4
}
Original file line number Diff line number Diff line change 1
1
< md-content class ="Page-container ">
2
- < div flex ="80 " flex-offset ="10 ">
3
- < div class ="Login-formContainer md-whiteframe-z1 " layout ="column " layout-align ="center center ">
4
- < h1 class ="md-headline "> Login</ h1 >
2
+ < div class ="Login-formContainer " layout ="column " layout-align ="center center ">
5
3
6
- < login-form > </ login-form >
4
+ < h1 class =" md-headline " > Log in to your account </ h1 >
7
5
8
- </ div >
9
- </ div >
6
+ < login-form > </ login-form >
7
+
8
+ </ div >
10
9
</ md-content >
Original file line number Diff line number Diff line change
1
+ .Register-formContainer {
2
+ margin-top : 80px ;
3
+ margin-bottom : 80px ;
4
+ }
Original file line number Diff line number Diff line change 1
1
< md-content class ="Page-container ">
2
2
< div flex ="80 " flex-offset ="10 ">
3
- < div class ="md-whiteframe-z1 " layout ="column " layout-align ="center center ">
4
- < h1 class ="md-headline "> Register </ h1 >
3
+ < div class ="Register-formContainer " layout ="column " layout-align ="center center ">
4
+ < h1 class ="md-headline "> Create an account </ h1 >
5
5
6
6
< register-form > </ register-form >
7
7
Original file line number Diff line number Diff line change @@ -2,7 +2,9 @@ export function ThemeConfig($mdThemingProvider) {
2
2
'ngInject' ;
3
3
/* For more info, visit https://material.angularjs.org/#/Theming/01_introduction */
4
4
$mdThemingProvider . theme ( 'default' )
5
- . primaryPalette ( 'indigo' )
5
+ . primaryPalette ( 'light-blue' , {
6
+ default : '600'
7
+ } )
6
8
. accentPalette ( 'grey' )
7
9
. warnPalette ( 'red' ) ;
8
10
}
You can’t perform that action at this time.
0 commit comments