Skip to content

Commit 42d441c

Browse files
committed
Finalized design for JWT reset password. closes #129
1 parent 7d269bf commit 42d441c

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

angular/app/components/forgot-password/forgot-password.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<form ng-submit="vm.submit()" class="ForgotPassword-form" layout="row" layout-align="center center">
1+
<form ng-submit="vm.submit()" class="ForgotPassword-form">
22
<div>
3-
<md-input-container class="ForgotPassword-input">
3+
<md-input-container>
44
<label>Email</label>
55
<input type="email" ng-model="vm.email">
66
</md-input-container>
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
.ForgotPassword-form{
2-
min-height: 200px;
3-
}
4-
51
.ForgotPassword-input{
62
margin-bottom: 0;
73
}

angular/app/components/reset-password/reset-password.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<form class="ResetPassword-form" ng-submit="vm.submit()" layout="row" layout-align="center center">
1+
<form ng-submit="vm.submit()">
22

33
<div ng-if="!vm.isValidToken" layout="row" layout-align="center center">
44
<md-progress-circular md-mode="indeterminate"></md-progress-circular>
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
.ResetPassword-form{
2-
min-height: 300px;
3-
}
4-
51
.ResetPassword-input{
62
margin-bottom: 0;
73
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.ForgotPassword-formContainer{
2+
margin-top: 80px;
3+
margin-bottom: 80px;
4+
}

angular/app/pages/forgot-password/forgot-password.page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<md-content class="Page-container">
2-
<div layout="column" layout-align="center center">
2+
<div class="ForgotPassword-formContainer" layout="column" layout-align="center center">
33

44
<h1 class="md-headline">Forgot your password?</h1>
55

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.ResetPassword-formContainer{
2+
margin-top: 80px;
3+
margin-bottom: 80px;
4+
}

angular/app/pages/reset-password/reset-password.page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<md-content class="Page-container">
2-
<div layout="column" layout-align="center center">
2+
<div class="ResetPassword-formContainer" layout="column" layout-align="center center">
33

44
<h1 class="md-headline">Reset Password</h1>
55

0 commit comments

Comments
 (0)