Commit 5119257f by Brian Talbot

test center - fixed dashboard link font issue and started cleaning up markup in reg form - wip

parent d5bd2313
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
@import 'multicourse/home'; @import 'multicourse/home';
@import 'multicourse/dashboard'; @import 'multicourse/dashboard';
@import 'multicourse/testcenter-register';
@import 'multicourse/courses'; @import 'multicourse/courses';
@import 'multicourse/course_about'; @import 'multicourse/course_about';
@import 'multicourse/jobs'; @import 'multicourse/jobs';
......
...@@ -418,6 +418,10 @@ ...@@ -418,6 +418,10 @@
font-size: 13px; font-size: 13px;
margin: 0; margin: 0;
a {
font-family: $sans-serif;
}
.grade-value { .grade-value {
font-size: 1.2rem; font-size: 1.2rem;
font-weight: bold; font-weight: bold;
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<%namespace name='static' file='static_content.html'/> <%namespace name='static' file='static_content.html'/>
<%block name="title"><title>Sign Up for Pearson VUE Test Center Proctoring</title></%block> <%block name="title"><title>Pearson VUE Test Center Proctoring - Sign Up</title></%block>
<%block name="js_extra"> <%block name="js_extra">
<script type="text/javascript"> <script type="text/javascript">
...@@ -35,14 +35,7 @@ ...@@ -35,14 +35,7 @@
</script> </script>
</%block> </%block>
<section id="testcenter-register" class=""> <section class="testcenter-register container">
<div class="inner-wrapper">
<div id="register">
<header>
<h2></h2>
<hr>
</header>
<!-- display stuff about the exam and the course for which the user is registering. <!-- display stuff about the exam and the course for which the user is registering.
If the user has already registered in the past for a test center, then also display If the user has already registered in the past for a test center, then also display
...@@ -72,7 +65,6 @@ ...@@ -72,7 +65,6 @@
<p>First Eligible Appointment Date: ${exam_info.get('First_Eligible_Appointment_Date')}</p> <p>First Eligible Appointment Date: ${exam_info.get('First_Eligible_Appointment_Date')}</p>
<p>Last Eligible Appointment Date: ${exam_info.get('Last_Eligible_Appointment_Date')}</p> <p>Last Eligible Appointment Date: ${exam_info.get('Last_Eligible_Appointment_Date')}</p>
% endif % endif
</section> </section>
<!-- check to see if the user has already registering, or <!-- check to see if the user has already registering, or
...@@ -120,6 +112,7 @@ ...@@ -120,6 +112,7 @@
for the exam listed above. Changes to this information for the exam listed above. Changes to this information
may be submitted below.</p> may be submitted below.</p>
</section> </section>
% else: % else:
<p>The demographic information must be provided below in order to register <p>The demographic information must be provided below in order to register
for the exam listed above.</p> for the exam listed above.</p>
...@@ -127,16 +120,12 @@ ...@@ -127,16 +120,12 @@
<!-- provide mechanism for error messages to appear --> <!-- provide mechanism for error messages to appear -->
% if message: % if message:
<section class=""> <div id="register_error" name="register_error">
<p>${message}</p> <p>${message}</p>
</section> </div>
% endif % endif
<form id="test_register_form" class="test_register_form" method="post" data-remote="true" action="/create_test_registration"> <form id="testcenter-register-form" method="post" data-remote="true" action="/create_test_registration">
<div class="notice"></div>
<!-- TODO: why are both of these here? -->
<div id="register_error" class="modal-form-error" name="register_error"></div>
<div id="register_error" name="register_error"></div>
<!-- include these as pass-throughs --> <!-- include these as pass-throughs -->
<input id="id_email" type="hidden" name="email" maxlength="75" value="${user.email}" /> <input id="id_email" type="hidden" name="email" maxlength="75" value="${user.email}" />
...@@ -199,15 +188,16 @@ ...@@ -199,15 +188,16 @@
<label data-field="company_name">Company</label> <label data-field="company_name">Company</label>
<input name="company_name" type="text" value="${testcenteruser.company_name}" placeholder="Acme Corporation"> <input name="company_name" type="text" value="${testcenteruser.company_name}" placeholder="Acme Corporation">
</div> </div>
<div><p>The following is included here just so it can be input within the form. But it <div>
is not part of the demographics, and it is not something that can be changed once input.</p>
</div> <p>The following is included here just so it can be input within the form. But it is not part of the demographics, and it is not something that can be changed once input.</p>
<div class="input-group"> <div class="input-group">
<label data-field="accommodations">Accommodations Requested</label> <label data-field="accommodations">Accommodations Requested</label>
<textarea name="accommodations"></textarea> <textarea name="accommodations"></textarea>
</div> </div>
% if len(registrations) > 0: % if len(registrations) > 0:
<div class="submit"> <div class="submit">
<input name="submit" type="submit" value="Update demographics"> <input name="submit" type="submit" value="Update demographics">
</div> </div>
...@@ -218,15 +208,6 @@ ...@@ -218,15 +208,6 @@
% endif % endif
</form> </form>
</div>
<!--
<div class="close-modal">
<div class="inner">
<p>&#10005;</p>
</div>
</div> -->
</div>
</section> </section>
......
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