Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit f985225

Browse files
committedOct 28, 2015
Merge pull request #485 from appirio-tech/forms-refactor
Forms refactor
2 parents 74022ff + 8c9b15a commit f985225

File tree

139 files changed

+2545
-8496
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+2545
-8496
lines changed
 

‎app/account/register/register.jade

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
input(ng-model="vm.username", ng-model-options="{ debounce: {'default': 500} }", ng-focus="vm.usernameTips = true", ng-blur="vm.usernameTips = false", ng-minlength="2", ng-maxlength="15", name="username", placeholder="Username", type="text", username-is-free, required)
4747

4848
.tips.username-tips(ng-show="vm.usernameTips")
49+
.arrow
4950
h3 Username Tips:
5051

5152
p Your username will be public
@@ -67,6 +68,7 @@
6768
input(ng-model="vm.email", ng-model-options="{ debounce: {'default': 500} }", ng-focus="vm.emailTips = true", ng-blur="vm.emailTips = false", name="email", placeholder="Enter Your Email", type="email", valid-email, email-is-available, required)
6869

6970
.tips.email-tips(ng-show="vm.emailTips")
71+
.arrow
7072
h3 Email Tips:
7173

7274
p Your email address will be private and not shared with anyone.
@@ -84,9 +86,10 @@
8486
toggle-password-with-tips(ng-if="!vm.isSocialRegistration")
8587

8688
.tips.password-tips(ng-show="vm.passwordFocus")
87-
h3 Password Tips:
89+
.arrow
90+
//- h3 Password Tips:
8891
89-
p Your password must have:
92+
H3 Your password must have:
9093

9194
p(ng-class="{ 'has-length-between-range': (vm.registerForm.password.$dirty && !vm.registerForm.password.$error.minlength && !vm.registerForm.password.$error.maxlength && !vm.registerForm.password.$error.required) }") At least 8 characters
9295

@@ -117,5 +120,4 @@
117120

118121
.join-topcoder
119122
span Have an account?  
120-
121123
a(ui-sref="login(vm.$stateParams)") Log in

‎app/account/reset-password/reset-password.jade

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
input(ng-model="vm.email", ng-focus="vm.emailTips = true", ng-blur="vm.emailTips = false", name="email", placeholder="EMAIL ADDRESS", type="email", valid-email, required)
1616

1717
.tips.email-tips(ng-show="vm.emailTips")
18+
.arrow
1819
h3 Email Tips:
1920

2021
p Enter your email address and we'll get back to you with a reset link
@@ -49,6 +50,7 @@
4950
toggle-password-with-tips
5051

5152
.tips.password-tips(ng-show="vm.passwordFocus")
53+
.arrow
5254
h3 Password Tips:
5355

5456
p(ng-class="{ 'has-length-between-range': (vm.resetPasswordForm.password.$dirty && !vm.resetPasswordForm.password.$error.minlength && !vm.resetPasswordForm.password.$error.maxlength && !vm.resetPasswordForm.password.$error.required) }") Must be between 8 and 64 characters

0 commit comments

Comments
 (0)
This repository has been archived.