Commit 383b7e80 by Matthew Mongeau

Successfull signup works.

parent c5410702
...@@ -7,61 +7,65 @@ ...@@ -7,61 +7,65 @@
<hr> <hr>
</header> </header>
<form id="enroll_form" method="post"> <div id="enroll">
<div id="enroll_error" name="enroll_error"></div>
<label>E-mail</label>
<input name="email" type="email" placeholder="E-mail">
<label>Password</label>
<input name="password" type="password" placeholder="Password">
<label>Public Username</label>
<input name="username" type="text" placeholder="Public Username">
<label>Full Name</label>
<input name="name" type="text" placeholder="Full Name">
<label>Your Location</label>
<input name="location" type="text" placeholder="Your Location">
<label>Prefered Language</label>
<input name="language" type="text" placeholder="Prefered Language">
<label class="terms-of-service">
<input name="terms_of_service" type="checkbox" value="true">
I agree to the
<a href="#">Terms of Service</a>
</label>
<label class="honor-code">
<input name="honor_code" type="checkbox" value="true">
I agree to the
<a href="#">Honor Code</a>
, sumarized below as:
</label>
<div class="honor-code-summary"> <form id="enroll_form" method="post">
<ul> <div id="enroll_error" name="enroll_error"></div>
<li> <label>E-mail</label>
<p>Complete all mid-terms and final exams with only my own work.</p> <input name="email" type="email" placeholder="E-mail">
</li> <label>Password</label>
<li> <input name="password" type="password" placeholder="Password">
<p>Maintain only one account, and not share the username or password.</p> <label>Public Username</label>
</li> <input name="username" type="text" placeholder="Public Username">
<li> <label>Full Name</label>
<p>Not engage in any activity that would dishonestly improve my results, or improve or hurt those of others.</p> <input name="name" type="text" placeholder="Full Name">
</li> <label>Your Location</label>
<li> <input name="location" type="text" placeholder="Your Location">
<p>Not post answers to problems that are being used to assess student performance.</p> <label>Prefered Language</label>
</li> <input name="language" type="text" placeholder="Prefered Language">
</ul> <label class="terms-of-service">
<hr> <input name="terms_of_service" type="checkbox" value="true">
</div> I agree to the
<a href="#">Terms of Service</a>
</label>
<label class="honor-code">
<input name="honor_code" type="checkbox" value="true">
I agree to the
<a href="#">Honor Code</a>
, sumarized below as:
</label>
<div class="honor-code-summary">
<ul>
<li>
<p>Complete all mid-terms and final exams with only my own work.</p>
</li>
<li>
<p>Maintain only one account, and not share the username or password.</p>
</li>
<li>
<p>Not engage in any activity that would dishonestly improve my results, or improve or hurt those of others.</p>
</li>
<li>
<p>Not post answers to problems that are being used to assess student performance.</p>
</li>
</ul>
<hr>
</div>
<div class="submit">
<input name="submit" type="submit" value="Create My Account">
</div>
</form>
<section class="login-extra"> <div class="submit">
<p> <input name="submit" type="submit" value="Create My Account">
<span>Already have an account? <a href="#">Login.</a></span> </div>
</p> </form>
</section>
<section class="login-extra">
<p>
<span>Already have an account? <a href="#">Login.</a></span>
</p>
</section>
</div>
<div class="close-modal"> <div class="close-modal">
<div class="inner"> <div class="inner">
......
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