Minor UI tweaks to signup form

This commit is contained in:
David Ormsbee
2012-07-22 01:59:57 -04:00
parent 63de542050
commit b67db2bbdb
2 changed files with 4 additions and 3 deletions

View File

@@ -9,7 +9,7 @@
<div class="title">
<hgroup>
<h1>The Future of Online Education</h1>
<h2>For anyone, anywhere, anytime.</h2>
<h2>For anyone, anywhere, anytime</h2>
</hgroup>
<section class="actions">

View File

@@ -36,6 +36,7 @@
<label>Country</label>
<div class="input-wrapper">
<select name="country">
<option value="">--</option>
%for country_code, country_name in COUNTRIES:
<option value="${country_code}">${country_name}</option>
%endfor
@@ -86,13 +87,13 @@
<label class="terms-of-service">
<input name="terms_of_service" type="checkbox" value="true">
I agree to the
<a href="${reverse('tos')}">Terms of Service</a>*
<a href="${reverse('tos')}" target="_blank">Terms of Service</a>*
</label>
<label class="honor-code">
<input name="honor_code" type="checkbox" value="true">
I agree to the
<a href="${reverse('honor')}">Honor Code</a>*
<a href="${reverse('honor')}" target="_blank">Honor Code</a>*
</label>
</div>