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

Commit 866aa53

Browse files
author
vikasrohit
committed
Merge pull request #279 from appirio-tech/fixes/vikas-beta-release
Added link to home page for reg flow header logos
2 parents 36b09b0 + 82c802b commit 866aa53

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

app/account/login/login.jade

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.login-container
22
header
3-
img(src="/images/logo_mobile.svg", alt="Topcoder Logo")
3+
a.logo-link(href="/")
4+
img(src="/images/logo_mobile.svg", alt="Topcoder Logo")
45
.arrow
56
h1 LOG IN TO TOPCODER
67

app/account/register/register.jade

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
.register-container
22
header
3+
a.logo-link(href="/")
34
img(src="/images/logo_mobile.svg", alt="Topcoder Logo")
4-
.arrow
5+
.arrow
56
h1 Join the Topcoder technology community to earn, learn, and connect
67

78
form(name="vm.registerForm", role="form", ng-submit="vm.registerForm.$valid && vm.register()", novalidate, autocomplete="off")
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
.registered-successfully-container
22

33
header
4-
img(src="/images/logo_mobile.svg", alt="Topcoder Logo")
4+
a.logo-link(href="/")
5+
img(src="/images/logo_mobile.svg", alt="Topcoder Logo")
56
.arrow
67

78
p.message Thanks for joining Topcoder.<br> We’ve sent you a confirmation link. Please check your email and click the link to activate your account. If you can't find the message, please email #[a(href="mailto:[email protected]") [email protected]].

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
.reset-password-container(ng-show="!vm.resetTokenSent && !vm.token")
22

33
header
4-
img(src="/images/logo_mobile.svg", alt="Topcoder Logo")
4+
a.logo-link(href="/")
5+
img(src="/images/logo_mobile.svg", alt="Topcoder Logo")
56
.arrow
67
h1(class="header") PASSWORD RESET
78

assets/css/account/account.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
background-color: #2E2E2E;
1717
display: flex;
1818
justify-content: center;
19+
align-items: center;
1920
/* TODO remove workarounds of -ve margin */
2021
margin-top: -66px;
2122
margin-bottom: 30px;
@@ -25,6 +26,7 @@
2526
background-repeat: no-repeat;
2627
background-position: 0px -11px;
2728
width: 16px;
29+
height: 10px;
2830
/* TODO remove workarounds of -ve margin */
2931
margin-left: -35px;
3032
margin-top: 61px;
@@ -218,4 +220,11 @@
218220
.register-container {
219221
margin: 66px auto;
220222
}
223+
224+
.registered-successfully-container {
225+
margin: 66px auto;
226+
p.message {
227+
padding: 34px 30px 124px 30px;
228+
}
229+
}
221230
}

0 commit comments

Comments
 (0)