info343/inc/dropbox.php

<header>
   <h2>Drop Box</h2>
</header>

<form id="dropbox" action="" method="POST">
   <ol class="steps">
      <li class="step selectassignment">
         <h3>Select an Assignment</h3>
         <p style="font-style: italic; color: gray; position: absolute; top: 2em">No assignments currently open for submission.</p>
         <ul class="assignments"></ul>
         <div>
            <input type="hidden" name="assignmenttype" />
            <input type="hidden" name="assignmentid" />
            <input type="hidden" name="section" />
         </div>
      </li>
      <li class="step uploadfiles disabled">
         <h3>Upload Files</h3>
         <p>Drag files from your computer and drop them below.</p>
         <!-- <p class="warning"><strong>Note:</strong> file names must match <strong>exactly</strong>!</p> -->
         <ul class="files"></ul>
      </li>
      <li class="step authenticate disabled">
         <h3>Authenticate</h3>
         <dl class="login">
            <dt><label for="username">UWNetID</label></dt>
               <dd><input type="text" id="username" name="username" maxlength="8" disabled="disabled" /></dd>
            <dt><label for="password">Password</label></dt>
               <dd><input type="password" id="password" name="password" disabled="disabled" /></dd>
         </dl>
         <div class="academic_integrity">
            <p>
               <input type="checkbox" id="academic_integrity_chk" disabled="disabled" />
               <label for="academic_integrity_chk">I have read the course policy on collaboration and academic integrity, and I certify that the work I am submitting does not violate this policy.</label>
            </p>
            <aside>
               <label for="academic_integrity_chk">(I have not received inappropriate help from other people or provided inappropriate help to other students, and I understand that my work may be compared by the instructor against other students’ submissions for inappropriate similarity.)</label>
            </aside>
         </div>
      </li>
   </ol>
   <div class="submit disabled">
      <input type="submit" value="Submit" disabled="disabled" /> <img id="submitting" src="<?= $BASENAME ?>/images/loading.gif" alt="Submitting" /><span class="checkbox_advisory">You must check the box above to submit.</span>
   </div>
</form>