FIND MY REGISTRATION DATE
Enter your SPC Email
I am not a robot
Continue[tcb-script]jQuery(function($){$(‘div.hide’).hide();$(‘#date-form’).submit(function(){var email = $(‘input#email’);var robot = $(‘input#robot’);if(!robot.is(‘:checked’)){email.css(‘border’, ‘1px solid #f00’);$(‘label[for=robot]’).css(‘font-weight’, ‘bold’).css(‘color’, ‘#f00’);return false;}if(!email.val() || !robot.is(‘:checked’)){email.css(‘border’, ‘1px solid #f00’);$(‘label[for=robot]’).css(‘font-weight’, ‘bold’).css(‘color’, ‘#f00’);return false;}var browser_url = $(location).attr(‘href’);browser_url = browser_url + ‘#’ + email.val();var log_success = function(data){console.log(‘success’);var info = data.process.info_array;var reg = $(‘#reg-info’);if(typeof info != ‘object’){reg.html(‘<h2>What\’s your registration date?</h2><p>Please be sure you\’ve entered your SPC email address correctly.<br/><br/>If you\’re not an SPC student, please <a href=”https://www.spcollege.edu/apply”>apply now</a>.’);return false;}info[‘registration date’] = info[‘registration date’].replace(‘;’, ‘,’).replace(‘;’, ‘,’);var msg = ‘<h2 class=”person-name”>’ + info.firstname + ‘, Your Spring Term Registration Date:</h2><p class=”person-date”>’ + info[‘registration date’] + ‘</p><h2 class=”person-name”>Get a reminder email or text message.</h2>’;reg.html(msg);$(‘div.hide’).show();}var log_error = function(data){console.log(‘error’);var reg = $(‘#reg-info’);reg.html(‘<h2>What\’s your registration date?</h2><p>Please be sure you\’ve entered your SPC email address correctly.<br/><br/>If you\’re not an SPC student, please <a href=”https://www.spcollege.edu/apply”>apply now</a>.’);return false;}var data = {campaignID: 41,url: browser_url,operation:’visitor’,identifier: email.val()};$.ajax({type: “POST”,url: ‘/data/_processors/receiver.php’,data: data,dataType: ‘json’,success: log_success,error: log_error});return false;});});[/tcb-script]
[tcb-script charset=”utf-8″ type=”text/javascript” src=”//js.hsforms.net/forms/v2.js”][/tcb-script][tcb-script]hbspt.forms.create({portalId: “3793416”,formId: “ebd90d27-c77d-406b-90b0-10cb7165725f”,css: “”});[/tcb-script]
General Questions
For general questions please call us:727-341-4772
Quick answers to your advising questions
If you have questions about advising, financial aid, registration or more, get answers quickly by browsing our online FAQs or using our FAQ search box below.
Search[tcb-script charset=”utf-8″ src=”https://js.hscta.net/cta/current.js”][/tcb-script][tcb-script type=”text/javascript”] hbspt.cta.load(3793416, ‘0fd9a7b9-50aa-46a4-9d5e-c794e93537df’, {}); [/tcb-script]
[tcb-script charset=”utf-8″ src=”https://js.hscta.net/cta/current.js”][/tcb-script][tcb-script type=”text/javascript”] hbspt.cta.load(3793416, ‘baecb4a4-5944-42ec-b1ce-42020dd84fad’, {}); [/tcb-script]
Open late for your convenience
For your convenience, SPC’s student services and business offices are open late four nights a week.
Monday – Thursday8:30 a.m. to 7 p.m.
Friday8:30 a.m. to 12 p.m.
Note: See hours for campus bookstores.The shortest wait times are in the morning. Please arrive at least one hour before closing for the best service.
7 THINGS YOU NEED TO KNOW
■ You can register any time during the registration period.
■ Spring term classes start Jan. 14, 2019.
■ Apply for financial aid any time or check your financial aid status.
■ You DO NOT have to wait for this semester’s grades in order to register for spring term
■ SPC offers interest-free payment plan so you can spread your tuition payments out over a few months.
■ Our academic advisors are ready to answer any questions you may have, either online, by phone or in person.
■ There are many scholarships to help out with the cost of tuition – You could be eligible!
The Board of Trustees of St. Petersburg College affirms its equal opportunity policy in accordance with the provisions of the Florida Educational Equity Act and all other relevant state and federal laws, rules and regulations. The college will not discriminate on the basis of race, color, ethnicity, religion, sex, age, national origin, marital status, pregnancy, sexual orientation, gender identity, genetic information, or against any qualified individual with disabilities in its employment practices or in the admission and treatment of students. Recognizing that sexual harassment constitutes discrimination on the basis of sex and violates this Rule, the college will not tolerate such conduct. Should you experience such behavior, please contact Pamela Smith, the director of EA/EO/Title IX Coordinator at 727-341-3261; by mail at P.O. Box 13489, St. Petersburg, FL 33733-3489; or by email at eaeo_director@spcollege.edu.
[tcb-script type=”text/javascript” src=”https://spcollege.tfaforms.net/wForms/3.10/js/localization-en_US.js”][/tcb-script][tcb-script]jQuery(function($) {// IMPORTANT: Fill in your client key//var clientKey = “i7cbYWgzXMLfT8CTbuzbqX0UnfEuyUOR2120XjAU5laZuMSFhrRHoRCM7ggFb5we”;var clientKey = “js-TG4Zgb9fGOH59UKDxgkmScyGxgBFYPTRwXRN912QPJVYEGBbXWyQ96wGn8llXedu”;//var clientKey = “js-9qZHzu2Flc59Eq5rx10JdKERovBlJp3TQ3ApyC4TOa3tA8U7aVRnFwf41RpLgtE7”;var cache = {};var container = $(“form.hs-form”);var errorDiv = container.find(“div.text-error”);/** Handle successful response */function handleResp(data){console.log(data.city);console.log(data.state);// Check for errorif (data.error_msg)errorDiv.text(data.error_msg);else if (“city” in data){// Set city and state//container.find(“input.cityField”).val(data.city);//container.find(“input.stateField”).val(data.state);$(‘input[name=city]’).val(data.city);$(‘input[name=state]’).val(data.state);}}// Set up event handlerscontainer.find(“input#zip-8d99d48e-94c8-4b89-819b-f5c25d611adb”).on(“keyup change”, function() {// Get zip codevar zipcode = $(this).val().substring(0, 5);if (zipcode.length == 5 && /^[0-9]+$/.test(zipcode)){console.log(zipcode);// Clear errorerrorDiv.empty();// Check cacheif (zipcode in cache){handleResp(cache[zipcode]);}else{// Build urlvar url = “https://www.zipcodeapi.com/rest/”+clientKey+”/info.json/” + zipcode + “/radians”;// Make AJAX request$.ajax({url: url,dataType: “json”,crossDomain: true}).done(function(data) {handleResp(data);// Store in cachecache[zipcode] = data;}).fail(function(data) {if (data.responseText && (json = $.parseJSON(data.responseText))){// Store in cachecache[zipcode] = json;// Check for errorif (json.error_msg)errorDiv.text(json.error_msg);}elseerrorDiv.text(‘Request failed.’);});}}}).trigger(“change”);});[/tcb-script][tcb-script]!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version=’2.0′;n.queue=[];t=b.createElement(e);t.async=!0;t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,document,’script’,’https://connect.facebook.net/en_US/fbevents.js’);fbq(‘init’, ‘103096010025796’);fbq(‘track’, ‘PageView’);fbq(‘track’, ‘ViewContent’);[/tcb-script][tcb-noscript][/tcb-noscript]