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

Commit 3fae568

Browse files
author
Parth Shah
committed
Merge branch 'dev' of github.com:appirio-tech/topcoder-app into dev
2 parents a19715b + ff8f852 commit 3fae568

File tree

8 files changed

+40
-6
lines changed

8 files changed

+40
-6
lines changed

app/account/login/login.controller.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
$log.warn(resp);
3333
switch (resp.status) {
3434
case "ACCOUNT_INACTIVE":
35+
$state.go('registeredSuccessfully');
3536
// user should already be redirected
3637
break;
3738
case "UNKNOWN_ERROR":

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: 3 additions & 2 deletions
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

7-
p.message Thanks. We've emailed you a reset link. Please check your inbox.
8+
p.message Thanks for joining Topcoder.<br> Weve 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

app/layout/header/header.controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
{ 'href': '/community/design/', 'text': 'DESIGN', 'icon': '/images/nav/scroll-design.svg' },
2828
{ 'href': '/community/development/', 'text': 'DEVELOPMENT', 'icon': '/images/nav/scroll-develop.svg' },
2929
{ 'href': '/community/data-science/', 'text': 'DATA SCIENCE', 'icon': '/images/nav/scroll-data.svg' },
30-
{ 'href': '/community/data-science/', 'text': 'COMPETITIVE PROGRAMMING', 'icon': '/images/nav/srms.svg' },
30+
{ 'href': '/community/competitive%20programming/', 'text': 'COMPETITIVE PROGRAMMING', 'icon': '/images/nav/srms.svg' },
3131
],
3232
'community': [
3333
{ 'href': '/community/members/', 'text': 'MEMBERS', 'icon': '/images/nav/users.svg' },

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
}

assets/images/ico-user-default.svg

Lines changed: 20 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)