73 lines
3.4 KiB
HTML
73 lines
3.4 KiB
HTML
<!-- TODO: Add pattern field to username. See HTML5 cookbook, page 84 for details-->
|
|
<div name="enroll_form" id="enroll_form">
|
|
|
|
<h1>Enroll in 6.002 Circuits & Electronics</h1>
|
|
<form name="login" method="get">
|
|
<fieldset><% if 'error' in locals(): e = error %>
|
|
|
|
<div id="enroll_error" name="enroll_error"></div>
|
|
|
|
<ol>
|
|
|
|
<li>
|
|
<label>E-mail*</label>
|
|
<input name="email" id="ca_email" type="email" required />
|
|
</li>
|
|
|
|
<li>
|
|
<label>Password*</label>
|
|
<input name="password" id="ca_password" type="password" required />
|
|
</li>
|
|
|
|
<li>
|
|
<label>Public Name* <span class="ui-icon ui-icon-help" id="spinner_nick" style="display:inline-block;"></span></label>
|
|
<input name="username" id="ca_username" type="text" required />
|
|
|
|
<div style="display:none" id="sregion_nick">Nickname you'd like to use on forums. We recommend some variant of your real name (e.g. first name, last initial), but we allow you to be fully anonymous as well. </div>
|
|
</li>
|
|
|
|
|
|
<li>
|
|
<label>Full name <span class="ui-icon ui-icon-help" id="spinner_name" style="display:inline-block;"></span></label>
|
|
<input name="name" id="ca_name" type="text" />
|
|
|
|
<div style="display:none" id="sregion_name">If you would like us to give you a certificate of completion at the end, we need your full legal name, as you would like it to appear on the certificate (e.g. "John Smith, Jr"). Otherwise, feel free to leave it blank. </div>
|
|
</li>
|
|
|
|
<li>
|
|
<label>Location <span class="ui-icon ui-icon-help" id="spinner_location" style="display:inline-block;"></span></label>
|
|
<input name="location" id="ca_location" type="text" />
|
|
|
|
<div style="display:none" id="sregion_location">Preferred format is city, state, country (so for us, "Cambridge, Massachusetts, USA"). We'd eventually like to group people into study groups. Studies show that geographic proximity helps. It'll also help us understand efforts needed for internationalization, low bandwidth, cultural issues, etc. We may also use statistics from this to help us raise money. </div>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<label>Preferred Language <span class="ui-icon ui-icon-help" id="spinner_language" style="display:inline-block;"></span></label>
|
|
|
|
<input name="language" id="ca_language" type="text" />
|
|
|
|
<div style="display:none" id="sregion_language">Please let us know what language you'd most like to see the content in (even if not your native). We're working on translations and internationalization. This will help us know what languages and regions to focus on. </div>
|
|
</li>
|
|
|
|
<li class="terms">
|
|
<label>
|
|
<input name="terms_of_service" id="cb_terms_of_service" type="checkbox" value="terms_of_service" required />I agree to the Terms of Service
|
|
</label>
|
|
</li>
|
|
|
|
<li class="honor-code">
|
|
<label>
|
|
<input name="honor_code" id="cb_honor_code" type="checkbox" value="honor_code" required />I agree to the Honor code. </label>
|
|
<ul>
|
|
<li>Not engage in any activities that would dishonestly improve my results, or improve or hurt those of others.</li>
|
|
<li>Never post answers to problems.</li>
|
|
<li>Maintain only one account.</li>
|
|
</ul>
|
|
</li>
|
|
|
|
</ol>
|
|
<input name="create_account_button" id="create_account_button" type="button" value="Create Account">
|
|
</fieldset> </form>
|
|
</div>
|