CINXE.COM

Clarence Fitzroy Bryant College : Alumni Login

<!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> <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"> <title>Clarence Fitzroy Bryant College : Alumni Login</title> <link href="assets/css/core/core-components-transitional.css" rel="stylesheet"> <script src="assets/js/core/core-template-transitional.js"></script> <script src="assets/js/core/core-components-transitional.js"></script> </head> <body> <div id="wrapper"><div class="w1"> <header id="header"> <div class="container"> <!-- 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 id="skiptocontent"> <a id="skipcontent_link" href="#">Skip to main content</a> </div> <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 --> <!-- 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> <main id="main"> <div class="container"> <section class="block-holder"> <header class="heading-wrap heading-wrap-Login"> <h1 class="title"> Login : Alumni</h1> <form class="update-form" name="login" autocomplete="off" action="alumsect2.cfm?auth=1" method="POST" onsubmit="return FormCheck(this)"> <input type='hidden' value='1' name='NotSSOLogin'> <div class="holder"> <div style="padding-bottom:10px">* Required </div> <div class="row"> <div class="col"><div> <label for="id_login">* ID</label><label style="display:none;" id="idReq"> Required</label></div> <INPUT class="formfield" id="id_login" TYPE="text" NAME="SOC_SEC" SIZE="9" MAXLENGTH="9" Aria-required="true" aria-describedby="idReq" ></div> <div class="col"><div><label for="id_pin">* PIN</label><label style="display:none;" id="pinReq"> Required</label></div> <INPUT class="formfield" id="id_pin" autocomplete="off" TYPE="password" NAME="PIN" SIZE="9" MAXLENGTH="15" Aria-required="true" aria-describedby="pinReq"></div> </div> <SCRIPT> document.login.SOC_SEC.focus(); </script> <SCRIPT> function refocus() {document.login.PIN.focus()} </script> </div> <div class="row"> <INPUT id="Submit" TYPE="submit" VALUE="Login"> </div> </form> </header> <div style="text-align:center; color:#dc3545;"> </div> <script type="text/javascript"> function opennotes(url) {popupWin = window.open(url,'Email PIN','width=500,height=600,left=1,top=1,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes'); popupWin.window.focus();} //--> </script> <div class="return"><a href="javascript:opennotes('emailpin1.cfm');"> Forgot your PIN and/or ID? </a></div> <div class="row" aria-hidden="true"><hr></div> <div id="notes"><b><br /><font color="blue" size="+1.5">If your Sonisweb profile has been disable , send an email with Full name and programme to sonisweb@cfbc.edu.kn to enable your profile. <br /> <br /> <br />**** You have three (3) tries before your profile is disable ****<br />If you have graduated, use the "Alumni" Portal.<br /> <br> </font> <font color="blue" size="+1.5"><br /><br /> <br /> For more information, kindly send your query to registration@cfbc.edu.kn <br /><br />Call 465-2856 Ext1143 or visit Assistant Registrar Office at the Main Campus.<br /></font> </div> </section></div></main></div> <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">&nbsp;</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 class="slide1"> <img src="images/montage.jpg" id="montage" alt="SONIS University Campus"> </div> </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> <script type="text/javascript"> // check if DTLanguage has been declared before declaring it if (typeof DTLanguage === 'undefined') { var DTLanguage = {}; } // set the default language DTLanguage = { oAria: { sSortAscending: 'activate to sort column ascending', sSortDescending: 'activate to sort column descending' }, oPaginate: { sFirst: 'First', sLast: 'Last', sNext: 'Next', sPrevious: 'Previous' }, sEmptyTable: 'No data available in table', sInfo: 'Viewing _START_ to _END_ of _TOTAL_ records', sInfoEmpty: 'Viewing 0 to 0 of 0 records', sInfoFiltered: '(Filtered from _MAX_ total records)', sLengthMenu: 'Show: _MENU_&nbsp;', sLoadingRecords: 'Loading...', sProcessing: 'Processing...', sSearch: 'Search:<br>', sZeroRecords: 'No matching records found' } </script> <script type="text/javascript" class="init"> $(document).ready(function() { $('.listing-table').DataTable( { "lengthMenu":[[-1,10, 25, 50, 100], ["All",10, 25, 50, 100]], "paging": true, "displayLength": 25, "searching": false } ); } ); </script> <script src="js/jquery.sitesearch.js"></script> <script src="js/jquery.mainportal.js"></script> <script src="js/datatable.js"></script> <script src="js/fixedcolumn.js"></script> <script src="js/jquery.main.js"></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10