Skip to content
Snippets Groups Projects
Commit 67cafe87 authored by Seth Meranda's avatar Seth Meranda
Browse files

More final adjustments prior to accessibility review for freshman app.

parent 1a617c8a
Branches
No related tags found
No related merge requests found
......@@ -184,8 +184,8 @@
padding: 1% 3%;
text-transform: uppercase;
font-weight: bold;
color:#123C54;
text-shadow:0px 1px 1px #fff;
color:#081f2c;
text-shadow:0px 1px 1px rgba(255,255,255,0.5);
font-size: 1.3em;
cursor: pointer;
border-top: 1px solid #9fb5d9;
......
......@@ -174,8 +174,8 @@ WDN.jQuery('document').ready(function($){
$('#application_fee input').change(function(){
$('input[name="Application_Fee"]').val($(this).val());
$('label[for="feeWaiver"] + p').remove();
if ($(this).val() == "WV"){
$('#system_school').show();
$('#system_school').html(
'<label for="Previously_Attended_Campus">Select the campus attended/applied<label>'
+ '<select name="Previously_Attended_Campus" id="Previously_Attended_Campus" class="required" >'
......@@ -192,16 +192,20 @@ WDN.jQuery('document').ready(function($){
+ '<div><label for="Previously_Attended_day">Day</label><input type="text" name="Previously_Attended_day" id="Previously_Attended_day" value="" maxlength="2" onchange="validDateDay(this);" /></div>'
+ '<div><label for="Previously_Attended_year">Year</label><input type="text" name="Previously_Attended_year" id="Previously_Attended_year" value="" maxlength="4" onchange="validDateYear(this);" /></div>'
+ '</fieldset> '
).show();
}
else if($(this).val() == "ND") {
$('label[for="feeWaiver"]').after(
'<p>Students are only considered for a fee waiver if they qualify for the free or reduced school lunch program OR if they have been granted a waiver on the ACT or SAT test. Documentation for these programs should be submitted with the application materials.</p>'
);
}
else {
$('#system_school').hide();
$('#system_school').html(" " +
+ '<input type="hidden" name="Previously_Attended_Campus"> '
+ '<input type="hidden" name="Previously_Attended_month"> '
+ '<input type="hidden" name="Previously_Attended_day"> '
+ '<input type="hidden" name="Previously_Attended_year"> '
);
).hide();
}
});
......
......@@ -853,7 +853,7 @@
<!-- **** Include the Application Fee code **** -->
<%@ include file="/jspf/applicationFee.jspf" %>
<input type="submit" value="Submit to Admissions" name="btnSubmit" onclick="action.value = 'submit'; checkEnglish(englishComplt); setRequiredFields(document.ugPage2);" />
<input type="submit" value="Submit to Admissions" name="btnSubmit" onclick="action.value = 'submit';" />
<input type="submit" value="Go Back to Previous Page" name="reset" onclick="action.value = 'saveAndGoBack';"/>
</form>
......
......@@ -17,9 +17,8 @@
<c:when test='${appType == "F"}'>
<label for="feeWaiver">
<input required type="radio" id="feeWaiver" name="pay_method" value="ND" <c:if test="${ugApp.payMethod=='ND'}"> checked </c:if> />
<a onclick="feeWaivedAlert()">
I am applying to have my application fee waived based upon documented financial need.
</a>
</label>
</c:when>
</c:choose>
......
......@@ -13,6 +13,7 @@
<ul>
<li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
<li><a href="http://admissions.unl.edu/" title="Office of Admissions">Admissions</a></li>
<li>Application for Admission</li>
</ul>
<!-- TemplateEndEditable -->
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment