CINXE.COM
Clarence Fitzroy Bryant College : Clarence Fitzroy Bryant College
<!DOCTYPE HTML> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="author" content="Jenzabar:SONIS"> <SCRIPT> function FormCheck(newent) { var alertBox = "An error has occurred. Please address the following and re-submit the form:\n"; var focusFirst, hasAlert = false; $('label:contains(*)').css('color','black'); var $user_id = $("input[name*='SOC_SEC']"); if($user_id.length == 0) { $user_id = $("input[name*='USER']"); } if ($user_id.val() == "") { hasAlert = true; alertBox += '* Please fill in your User ID. \n'; $user_id.prev('div').find('label').css('color','#dc3545'); $user_id.prev('div').find('label').show(); if(!focusFirst) { focusFirst = true; $user_id.focus(); } } var $pin = $("input[name*='PIN']"); if ($pin.val() == "") { hasAlert = true; alertBox += '* Please fill in your PIN. \n'; $pin.prev('div').find('label').css('color','#dc3545'); $pin.prev('div').find('label').show() if(!focusFirst) { focusFirst = true; $pin.focus(); } } var $pass = $("input[name*='PASSWORD']"); if ($pass.val() == "") { hasAlert = true; alertBox += '* Please fill in your Password. \n'; $pass.prev('div').find('label').css('color','#dc3545'); $pass.prev('div').find('label').show(); if(!focusFirst) { focusFirst = true; $pass.focus(); } } if(hasAlert) { alert(alertBox); return false; } } </SCRIPT> <title>Clarence Fitzroy Bryant College : Clarence Fitzroy Bryant College</title> <script src="assets/js/vendor/jquery-3.6.1.min.js"></script> <script src="jQuery/preventDoubleSubmission.js"></script> <script type="text/javascript"> $(document).ready(function(){ var last_clicked, time_since_clicked; jQuery(this).bind('submit', function(event) { if(last_clicked) { time_since_clicked = jQuery.now() - last_clicked; } last_clicked = jQuery.now(); if(time_since_clicked < 2000) { // Blocking form submit because it was too soon after the last submit. event.preventDefault(); alert('Duplicate submit blocked. \r\n'); } return true; }); }); function CacheProvider() { // values will be stored here this._cache = {}; } try { CacheProvider.hasLocalStorage = ('localStorage' in window) && window['localStorage'] !== null; } catch (ex) { CacheProvider.hasLocalStorage = false; } </script> <script type="text/javascript"> function onResetForm(newent) { if(newent) { var formName = $("#maincontent").text(); $(newent).children('.sr-only:first').text("The "+formName+" form has been cleared."); $(newent).find('input[type="text"]').first().focus(); } } $(document).ready(function(){ $('input[type="reset"]').each(function(){ var $form = $(this).closest('form'); if($form && !$form.attr('onreset')) { $form.attr({'onreset': 'return onResetForm(this)' }); } $form.prepend('<span class="sr-only" aria-live="polite" aria-atomic="true"></span>'); $form.on('input', 'input', function(event){ $form.children('.sr-only:first').text(""); }) .on('change', 'select', function(event){ $form.children('.sr-only:first').text(""); }); }); }); </script> <link rel="stylesheet" href="css/core-login.css"> <link rel="stylesheet" href="css/default_login_jsonis.css" type="text/css"> <link rel="icon" type="image/png" href="assets/img/core/defaultFavsIcon.png"> <link rel="icon" type="image/png" href="assets/img/client/favs_icon.png"> </head> <body> <!-- main container of all the page elements --> <div id="wrapper"> <div class="w1"> <!-- header of the page --> <header id="header"> <div class="container"> <!-- page logo --> <!-- TOP BANNER TABLE BEGIN --> <script type="text/javascript"> $(document).ready(function(){ $('body').on('keydown', '#skipcontent_link', function(event) { if (event.keyCode == 13) { if($('#maincontent').length > 0) { $('#maincontent').focus(); } else if($('#id_login').length > 0) { $('#id_login').focus(); } event.preventDefault(); } }); }); </script> <div class="logo"> <a href="index.cfm" aria-label="Main Site Home"> <div class="Banner_txt">Clarence Fitzroy Bryant College </div> </a> </div> <!-- TOP BANNER TABLE END --> <!-- main navigation of the page --> <!-- SIDE NAV TABLE BEGIN --> <script type="text/javascript"> window.addEventListener('resize', function() { if (window.innerWidth > 760) { $('#nav').show(); } }); $(document).ready(function(){ /* * jQuery accessible and keyboard-enhanced navigation with dropdown * Website: http://a11y.nicolas-hoffmann.net/subnav-dropdown/ * License MIT: https://github.com/nico3333fr/jquery-accessible-subnav-dropdown/blob/master/LICENSE */ var $nav_system = $('.js-nav-system'), $body = $('body'); if ($nav_system.length) { var $nav_system_link = $('.js-nav-system__link'); $nav_system_link.each(function(index_to_expand) { var $this = $(this), $subnav = $this.next('.js-nav-system__subnav'); $subnav.css({ 'opacity': '', 'display': 'block' }); }); } $body.on('focus', '.js-nav-system__link', function(event) { var $this = $(this), $parent = $this.parents('.js-nav-system'), $parent_item = $this.parents('.js-nav-system__item'), $subnav = $this.next('.js-nav-system__subnav'); $parent.find('.js-nav-system__subnav').css({ 'opacity': '0', 'display': 'none' }); console.log('On focus keyboard') if($parent_item.hasClass('has-drop-down')) { console.log('auto expand') $parent_item.addClass("drop-active hover"); $parent_item.attr({'aria-expanded': 'true'}); $this.attr({'aria-expanded': 'true'}); $subnav.css({ 'opacity': '', 'display': 'block' }); } }) .on('focusout', '.js-nav-system__link', function(event) { var $this = $(this), $parent = $this.parents('.js-nav-system'), $parent_item = $this.parents('.js-nav-system__item'); $subnav = $this.next('.js-nav-system__subnav'); $parent_item.removeClass("drop-active hover"); if ($subnav.length === 1) { $parent_item.attr({'aria-expanded': 'false'}); $this.attr({'aria-expanded': 'false'}); } }) .on('mouseover', '.js-nav-system__link', function(event) { var $this = $(this), $parent = $this.parents('.js-nav-system'), $parent_item = $this.parents('.js-nav-system__item'), $subnav = $this.next('.js-nav-system__subnav'); if ($subnav.length === 1) { $parent_item.attr({'aria-expanded': 'true'}); $this.attr({'aria-expanded': 'true'}); } }) .on('mouseout', '.js-nav-system__link', function(event) { var $this = $(this), $parent = $this.parents('.js-nav-system'), $parent_item = $this.parents('.js-nav-system__item'); $subnav = $this.next('.js-nav-system__subnav'); if ($subnav.length === 1) { $parent_item.attr({'aria-expanded': 'false'}); $this.attr({'aria-expanded': 'false'}); } }) .on('keydown', '.js-nav-system__link', function(event) { var $this = $(this), $parent = $this.parents('.js-nav-system'), $parent_item = $this.parents('.js-nav-system__item'), $subnav = $this.next('.js-nav-system__subnav'); if (event.keyCode == 13) { if ($subnav.length === 1) { if($this.attr('aria-expanded') == "true") { $parent_item.removeClass("drop-active hover"); $parent_item.attr({'aria-expanded': 'false'}); $this.attr({'aria-expanded': 'false'}); $subnav.css({ 'opacity': '0', 'display': 'none' }); } else { $parent_item.addClass("drop-active hover"); $parent_item.attr({'aria-expanded': 'true'}); $this.attr({'aria-expanded': 'true'}); $subnav.css({ 'opacity': '', 'display': 'block' }); } } } if (event.keyCode == 37) { if ($parent_item.is(".js-nav-system__item:first-child")) { $parent.find(".js-nav-system__item:last-child").children(".js-nav-system__link").focus(); } else { $parent_item.prev().children(".js-nav-system__link").focus(); } event.preventDefault(); } if (event.keyCode == 39) { if ($parent_item.is(".js-nav-system__item:last-child")) { $parent.find(" .js-nav-system__item:first-child ").children(".js-nav-system__link").focus(); } else { $parent_item.next().children(".js-nav-system__link").focus(); } event.preventDefault(); } if (event.keyCode == 40 || event.keyCode == 13) { if ($subnav.length === 1) { $subnav.css({ 'opacity': '', 'display': 'block' }); $subnav.find(" .js-nav-system__subnav__item:first-child ").children(".js-nav-system__subnav__link").focus(); } event.preventDefault(); } if (event.shiftKey && event.keyCode == 9) { if ($parent_item.is(".js-nav-system__item:first-child")) { $subnav.css({ 'opacity': '0', 'display': 'none' }); } } }) .on('click', '.js-nav-system__link', function(event) { var $this = $(this), $parent = $this.parents('.js-nav-system'), $parent_item = $this.parents('.js-nav-system__item'), $subnav = $this.next('.js-nav-system__subnav'); if ($subnav.length === 1) { if($this.attr('aria-expanded') == "true") { $parent_item.removeClass("drop-active hover"); $parent_item.attr({'aria-expanded': 'false'}); $this.attr({'aria-expanded': 'false'}); $subnav.css({ 'opacity': '0', 'display': 'none' }); } else { $parent_item.addClass("drop-active hover"); $parent_item.attr({'aria-expanded': 'true'}); $this.attr({'aria-expanded': 'true'}); $subnav.css({ 'opacity': '', 'display': 'block' }); } event.preventDefault(); } }); $body.on('keydown', '.js-nav-system__subnav__link', function(event) { var $this = $(this), $subnav = $this.parents('.js-nav-system__subnav'), $subnav_item = $this.parents('.js-nav-system__subnav__item'), $nav_link = $subnav.prev('.js-nav-system__link'), $nav_item = $nav_link.parents('.js-nav-system__item'), $nav = $nav_link.parents('.js-nav-system'); if (event.keyCode == 40) { if ($subnav_item.is(".js-nav-system__subnav__item:last-child")) { $subnav.find(".js-nav-system__subnav__item:first-child ").children(".js-nav-system__subnav__link").focus(); } else { $subnav_item.next().children(".js-nav-system__subnav__link").focus(); } event.preventDefault(); } if (event.keyCode == 38) { if ($subnav_item.is(".js-nav-system__subnav__item:first-child")) { $subnav.find(" .js-nav-system__subnav__item:last-child ").children(".js-nav-system__subnav__link").focus(); } else { $subnav_item.prev().children(".js-nav-system__subnav__link").focus(); } event.preventDefault(); } if (event.keyCode == 27) { $nav_link.focus(); $subnav.css({ 'opacity': '0', 'display': 'none' }); event.preventDefault(); } if (event.keyCode == 39) { $subnav.css({ 'opacity': '0', 'display': 'none' }); if ($nav_item.is(".js-nav-system__item:last-child")) { $next = $nav.find(" .js-nav-system__item:first-child ").children(".js-nav-system__link"); $next.focus(); $subnav_next = $next.next('.js-nav-system__subnav'); if ($subnav_next.length === 1) { $subnav_next.find(" .js-nav-system__subnav__item:first-child ").children(".js-nav-system__subnav__link").focus(); } } else { $next = $nav_item.next().children(".js-nav-system__link"); $next.focus(); $subnav_next = $next.next('.js-nav-system__subnav'); if ($subnav_next.length === 1) { $subnav_next.find(" .js-nav-system__subnav__item:first-child ").children(".js-nav-system__subnav__link").focus(); } } event.preventDefault(); } if (event.keyCode == 37) { $subnav.css({ 'opacity': '0', 'display': 'none' }); if ($nav_item.is(".js-nav-system__item:first-child")) { $prev = $nav.find(" .js-nav-system__item:last-child ").children(".js-nav-system__link"); $prev.focus(); $subnav_prev = $prev.next('.js-nav-system__subnav'); if ($subnav_prev.length === 1) { $subnav_prev.find(".js-nav-system__subnav__item:first-child ").children(".js-nav-system__subnav__link").focus(); } } else { $prev = $nav_item.prev().children(".js-nav-system__link"); $prev.focus(); $subnav_prev = $prev.next('.js-nav-system__subnav'); if ($subnav_prev.length === 1) { $subnav_prev.find(".js-nav-system__subnav__item:first-child ").children(".js-nav-system__subnav__link").focus(); } } event.preventDefault(); } if (event.keyCode == 9 && !event.shiftKey) { if ($nav_item.is(".js-nav-system__item:last-child") && $subnav_item.is(".js-nav-system__subnav__item:last-child")) { $subnav.css({ 'opacity': '0', 'display': 'none' }); } } }) .on('focus', '.js-nav-system__subnav__link', function(event) { var $this = $(this), $parent_item = $this.parents('.js-nav-system__item'), $subnav = $this.parents('.js-nav-system__subnav'), $subnav_item = $this.parents('.js-nav-system__subnav__item'), $nav_link = $subnav.prev('.js-nav-system__link'); $parent_item.addClass("drop-active hover"); if ($subnav.length === 1) { $parent_item.attr({'aria-expanded': 'true'}); $nav_link.attr({'aria-expanded': 'true'}); } $subnav_item.addClass("hover"); }) .on('focusout', '.js-nav-system__subnav__link', function(event) { var $this = $(this), $parent_item = $this.parents('.js-nav-system__item'), $subnav = $this.parents('.js-nav-system__subnav'), $subnav_item = $this.parents('.js-nav-system__subnav__item'), $nav_link = $subnav.prev('.js-nav-system__link'); $parent_item.removeClass("drop-active hover"); if ($subnav.length === 1) { $parent_item.attr({'aria-expanded': 'false'}); $nav_link.attr({'aria-expanded': 'false'}); } $subnav_item.removeClass("hover"); }) .on('mouseover', '.js-nav-system__subnav__link', function(event) { var $this = $(this), $parent_item = $this.parents('.js-nav-system__item'), $subnav = $this.parents('.js-nav-system__subnav'), $nav_link = $subnav.prev('.js-nav-system__link'); $parent_item.attr({'aria-expanded': 'true'}); $nav_link.attr({'aria-expanded': 'true'}); }) .on('mouseout', '.js-nav-system__subnav__link', function(event) { var $this = $(this), $parent_item = $this.parents('.js-nav-system__item'), $subnav = $this.parents('.js-nav-system__subnav'), $nav_link = $subnav.prev('.js-nav-system__link'); $parent_item.attr({'aria-expanded': 'false'}); $nav_link.attr({'aria-expanded': 'false'}); }); }); </script> <script type="text/javascript"> function hidenav() { if ($('#nav').is(":visible")) { $('#nav').hide(); } else { $('#nav').show(); } } </script> <nav class="nav-holder" aria-label="Top Navigation"> <a href="#" class="opener" onclick="hidenav()"> Menu <span></span></a> <ul id="nav" class="js-nav-system"> <li class="js-nav-system__item"> <a href="#" class="js-nav-system__link" aria-expanded="false" aria-label="Login">LOGIN</a> <ul class="js-nav-system__subnav"> <li class="js-nav-system__subnav__item"><a class="sidebar js-nav-system__subnav__link" href="studsect.cfm"> <div class="sidebar_txt">Current Student</div> </a></li> <li class="js-nav-system__subnav__item"><a class="sidebar js-nav-system__subnav__link" href="alumsect.cfm"> <div class="sidebar_txt">Alumni</div> </a></li> <li class="js-nav-system__subnav__item"><a class="sidebar js-nav-system__subnav__link" href="facsect.cfm"> <div class="sidebar_txt">Faculty</div> </a></li> <li class="js-nav-system__subnav__item"><a class="sidebar js-nav-system__subnav__link" href="admnsect.cfm"> <div class="sidebar_txt">Administration</div> </a></li> </ul> </li> <li class="js-nav-system__item"><a class="sidebar js-nav-system__link" href="genprg.cfm" aria-label="Programs" role="link"> <div class="sidebar_txt">Program Details</div> </a></li> </ul> </nav> <script type="text/javascript"> if ((screen.width < 761) && $('#nav').is(":visible")) { $('#nav').hide(); } </script> <!-- SIDE NAV TABLE END --> </div> </header> <!-- contain main informative part of the site --> <main id="main"> <div class="container"> <div class="cycle-gallery"> <div class="mask"> <div class="slideset"> <div class="slide"> <img src='Images/Index_Images/DSC_0738 CFBC.jpg' alt="SONIS University Campus" width="1000" height="431"> </div> </div> </div> </div> </div> </main> <div align="center"> <div id="notes"> </div> </div> </div> <!-- footer of the page --> <footer id="footer"> <div class="container"> <div class="powered-box"> <span class="text">Powered By: </span> <img src="images/power-logo.png" alt="Jenzabar company logo" width="163" height="33"> <br> <span class="text-dark" style="font-size: 11px; line-height: 30px; padding: 0px 10px;">Version 2023</span> </div> <div class="wavebar" style="padding-top: 40px"> </div> </div> <div class="footer-holder"> <div class="container"> <ul class="footer-nav"> <li> <a class="bottom" href="admnsect.cfm ">Administration</a> </li> <li> <a class="bottom" href="alumsect.cfm ">Alumni</a> </li> <li> <a class="bottom" href="facsect.cfm ">Faculty</a> </li> <li> <a class="bottom" href="genprg.cfm ">Program Details</a> </li> <li> <a class="bottom" href="studsect.cfm ">Current Student</a> </li> </ul> <!-- BOTTOM TABLE BEGIN --> <div class="montage2"> <div class="mask1"> <div class="slideset1"> </div> </div></div> <div id = "deselect_all" style="display: none;"> DeSelect All </div> <div id = "select_all" style="display: none;"> Select All </div> </div> </div> </footer> </div> <!-- include custom JavaScript --> <script src="js/jquery.main.js"></script> </body> </html>