Commit 46887cbc by Kyle Fiedler

Added stars for required fields in sign up form

parent 164b5b67
...@@ -19,14 +19,14 @@ ...@@ -19,14 +19,14 @@
<div id="enroll_error" name="enroll_error"></div> <div id="enroll_error" name="enroll_error"></div>
<div class="input-group"> <div class="input-group">
<label>E-mail</label> <label>E-mail*</label>
<input name="email" type="email" placeholder="E-mail"> <input name="email" type="email" placeholder="E-mail*">
<label>Password</label> <label>Password*</label>
<input name="password" type="password" placeholder="Password"> <input name="password" type="password" placeholder="Password*">
<label>Public Username</label> <label>Public Username*</label>
<input name="username" type="text" placeholder="Public Username"> <input name="username" type="text" placeholder="Public Username*">
<label>Full Name</label> <label>Full Name</label>
<input name="name" type="text" placeholder="Full Name"> <input name="name" type="text" placeholder="Full Name*">
<label>Mailing address</label> <label>Mailing address</label>
<textarea name="mailing_address" placeholder="Mailing address"></textarea> <textarea name="mailing_address" placeholder="Mailing address"></textarea>
</div> </div>
...@@ -86,13 +86,13 @@ ...@@ -86,13 +86,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')}">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')}">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