create_account.html 4.06 KB
Newer Older
1
<!-- TODO: Add pattern field to username. See HTML5 cookbook, page 84 for details-->
pmitros committed
2
<div name="enroll_form" id="enroll_form">
3

Piotr Mitros committed
4
  <h1>Enroll in 6.002x Circuits &amp; Electronics</h1>
5
  <!--[if lte IE 8]>
6
  <p class="ie-warning"> Enrollment requires a modern web browser with JavaScript enabled. You don't have this. You can&rsquo;t enroll without upgrading, since you couldn&rsquo;t take the course without upgrading. Feel free to download the latest version of <a href="http://www.mozilla.org/en-US/firefox/new/">Mozilla Firefox</a> or <a href="http://support.google.com/chrome/bin/answer.py?hl=en&answer=95346">Google Chrome</a>, for free, to enroll and take this course.</p>
7
  <![endif]-->
8
  <p class="disclaimer">
Lyla Fischer committed
9
Please note that 6.002x has now passed its half-way point. The midterm exam and several assignment due dates for 6.002x have already passed. It is now impossible for newly enrolled students to earn a passing grade and a completion certificate for the course. However, new students have access to all of the course material that has been released for the course, so you are welcome to enroll and browse the course.  </p>
10
  <form name="enroll" id="enroll_form"  method="get">
11
    <fieldset><% if 'error' in locals(): e = error %>
12 13 14 15 16

    <div id="enroll_error" name="enroll_error"></div>

    <ol>

17
      <li class="email">
18
        <label>E-mail*</label>
Piotr Mitros committed
19
        <input name="email" id="ca_email" type="email" />
20 21
      </li>

22
      <li class="password">
23
        <label>Password*</label>
Piotr Mitros committed
24
        <input name="password" id="ca_password" type="password"  />
25 26
      </li>

27
      <li class="username">
28
        <label>Username (public)* <span class="ui-icon ui-icon-help" id="spinner_nick" style="display:inline-block;"></span></label>
Piotr Mitros committed
29
        <input name="username" id="ca_username" type="text"  /> 
30

31
        <div id="sregion_nick" class="tip">Nickname you'd like to use on forums.</div>
32 33
      </li>

34
      <li class="full-name">
Piotr Mitros committed
35
        <label>Full name*<span class="ui-icon ui-icon-help" id="spinner_name" style="display:inline-block;"></span></label>
Piotr Mitros committed
36
        <input name="name" id="ca_name" type="text"  />
37

Piotr Mitros committed
38
        <div class="tip" id="sregion_name">If you successfully complete the course, you will receive an electronic certificate of accomplishment from <i>MITx</i> with this name on it.</div>
39 40
      </li>

41
      <li class="location">
42 43 44
        <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" />

45
        <div id="sregion_location" class="tip">Preferred format is city, state, country (so for us, &quot;Cambridge, Massachusetts, USA&quot;).</div>
46 47
      </li>

48
      <li class="language">
49 50 51 52
        <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" />

53
        <div id="sregion_language" class="tip">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.</div>
54 55 56
      </li>

      <li class="terms">
Piotr Mitros committed
57
        <label> <input name="terms_of_service" id="cb_terms_of_service" type="checkbox" value="terms_of_service"  />I agree to the <a href="/t/tos.html">Terms of Service</a>*</label>
58 59 60 61
      </li>

      <li class="honor-code">
        <label>
Piotr Mitros committed
62
          <input name="honor_code" id="cb_honor_code" type="checkbox" value="honor_code"  />I agree to the <a href="/t/honor.html">Honor Code</a>, summarized as:*</label>
63
        <ul>
Piotr Mitros committed
64 65
	  <li>Complete all mid-terms and final exams with only my own work.</li>
          <li>Maintain only one account, and not share the username or password.</li>
66
          <li>Not engage in any activities that would dishonestly improve my results, or improve or hurt those of others.</li>
Piotr Mitros committed
67
          <li>Not post answers to problems that are being used to assess student performance.</li>
68
        </ul>
69 70 71
      </li>

    </ol>
72
    <input name="create_account_button" id="create_account_button" type="submit" value="Create Account">
73
  </fieldset>  </form>
pmitros committed
74
</div>