Commit b67db2bb by David Ormsbee

Minor UI tweaks to signup form

parent 63de5420
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<div class="title"> <div class="title">
<hgroup> <hgroup>
<h1>The Future of Online Education</h1> <h1>The Future of Online Education</h1>
<h2>For anyone, anywhere, anytime.</h2> <h2>For anyone, anywhere, anytime</h2>
</hgroup> </hgroup>
<section class="actions"> <section class="actions">
......
...@@ -36,6 +36,7 @@ ...@@ -36,6 +36,7 @@
<label>Country</label> <label>Country</label>
<div class="input-wrapper"> <div class="input-wrapper">
<select name="country"> <select name="country">
<option value="">--</option>
%for country_code, country_name in COUNTRIES: %for country_code, country_name in COUNTRIES:
<option value="${country_code}">${country_name}</option> <option value="${country_code}">${country_name}</option>
%endfor %endfor
...@@ -86,13 +87,13 @@ ...@@ -86,13 +87,13 @@
<label class="terms-of-service"> <label class="terms-of-service">
<input name="terms_of_service" type="checkbox" value="true"> <input name="terms_of_service" type="checkbox" value="true">
I agree to the I agree to the
<a href="${reverse('tos')}">Terms of Service</a>* <a href="${reverse('tos')}" target="_blank">Terms of Service</a>*
</label> </label>
<label class="honor-code"> <label class="honor-code">
<input name="honor_code" type="checkbox" value="true"> <input name="honor_code" type="checkbox" value="true">
I agree to the I agree to the
<a href="${reverse('honor')}">Honor Code</a>* <a href="${reverse('honor')}" target="_blank">Honor Code</a>*
</label> </label>
</div> </div>
......
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