Commit 42ccc6c0 authored by Connor Hudson's avatar Connor Hudson Committed by GitHub

Merge pull request #622 from technoboy10/gh620-coming-soon

Fix GH-620: Replace "Request account" with "Coming Soon"
parents 221170a9 ce4069fd
...@@ -22,5 +22,5 @@ ...@@ -22,5 +22,5 @@
"teacherlanding.creativeComputing": "The <a href=\"http://scratched.gse.harvard.edu/guide/\">Creative Computing Curriculum Guide</a> provides plans, activities, and strategies for introducing creative computing.", "teacherlanding.creativeComputing": "The <a href=\"http://scratched.gse.harvard.edu/guide/\">Creative Computing Curriculum Guide</a> provides plans, activities, and strategies for introducing creative computing.",
"teacherlanding.accountsTitle": "Teacher Accounts in Scratch", "teacherlanding.accountsTitle": "Teacher Accounts in Scratch",
"teacherlanding.accountsDescription": "As an educator, you can request a Scratch Teacher Account, which makes it easier to create accounts for groups of students and to manage your students’ projects and comments. To learn more, see the <a href=\"faq\">Teacher Account FAQ page</a>.", "teacherlanding.accountsDescription": "As an educator, you can request a Scratch Teacher Account, which makes it easier to create accounts for groups of students and to manage your students’ projects and comments. To learn more, see the <a href=\"faq\">Teacher Account FAQ page</a>.",
"teacherlanding.accountsButton": "Request Account" "teacherlanding.accountsButton": "Coming Soon"
} }
...@@ -140,9 +140,7 @@ var Landing = injectIntl(React.createClass({ ...@@ -140,9 +140,7 @@ var Landing = injectIntl(React.createClass({
<p> <p>
<FormattedHTMLMessage id="teacherlanding.accountsDescription" /> <FormattedHTMLMessage id="teacherlanding.accountsDescription" />
</p> </p>
<a href="register"> <Button><FormattedMessage id="teacherlanding.accountsButton" /></Button>
<Button><FormattedMessage id="teacherlanding.accountsButton" /></Button>
</a>
</div> </div>
<img src="/images/teachers/teacher-account.png" alt="teacher account" id="teacher-icon"/> <img src="/images/teachers/teacher-account.png" alt="teacher account" id="teacher-icon"/>
</div> </div>
......
...@@ -214,12 +214,19 @@ $story-width: $cols3; ...@@ -214,12 +214,19 @@ $story-width: $cols3;
} }
button { button {
background-color: $ui-white; border: 2px solid $ui-white;
border-radius: 50px;
box-shadow: none;
background-color: transparent;
padding: 16px 16px; padding: 16px 16px;
width: $cols5 / 2; width: $cols5 / 2;
color: $ui-blue; color: $ui-white;
font-size: 16px; font-size: 16px;
font-weight: 500; font-weight: 500;
&:hover {
box-shadow: none;
}
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment