application to badge logo

Start Your Application

Start your application and a student success representative will reach out to help you through the process.

Already started your USF application? Click here to login.

General Information

Program of Interest   Health Informatics Certificate   MSHI Healthcare Analytics   Master's in Health Informatics   SAS Approved Graduate Certificate in Healthcare Analytics Country of Citizenship United States of America Afghanistan Aland Islands Albania Algeria American Samoa Andorra Angola Anguilla Antarctica Antigua and Barbuda Argentina Armenia Aruba Australia Austria Azerbaijan Bahamas Bahrain Bangladesh Barbados Belarus Belgium Belize Benin Bermuda Bhutan Bolivia Bonaire, Sint Eustatius and Saba Bosnia and Herzegovina Botswana Bouvet Island Brazil British Indian Ocean Territory British Virgin Islands Brunei Darussalam Bulgaria Burkina Faso Burundi Cambodia Cameroon Canada Cape Verde Cayman Islands Central African Republic Chad Chile China Christmas Island Cocos (Keeling) Islands Colombia Comoros Cook Islands Costa Rica Cote dIvoire Croatia Cuba Curacao Cyprus Czech Republic Democratic Republic of the Congo Denmark Djibouti Dominica Dominican Republic Ecuador Egypt El Salvador Equatorial Guinea Eritrea Estonia Ethiopia Falkland Islands (Malvinas) Faroe Islands Fiji Finland France French Guiana French Polynesia French Southern Territories Gabon Gambia Georgia Germany Ghana Gibraltar Greece Greenland Grenada Guadeloupe Guam Guatemala Guernsey Guinea Guinea-Bissau Guyana Haiti Heard Island and McDonald Islands Holy See (Vatican City State) Honduras Hong Kong Hungary Iceland India Indonesia Iran, Islamic Republic of Iraq Ireland Isle of Man Israel Italy Jamaica Japan Jersey Jordan Kazakhstan Kenya Kiribati Korea, Democratic People's Republic of Kosovo Kuwait Kyrgyzstan Lao People's Democratic Republic Latvia Lebanon Lesotho Liberia Libyan Arab Jamahiriya Liechtenstein Lithuania Luxembourg Macau Macedonia Madagascar Malawi Malaysia Maldives Mali Malta Marshall Islands Martinique Mauritania Mauritius Mayotte Mexico Micronesia Moldova, Republic of Monaco Mongolia Montenegro Montserrat Morocco Mozambique Myanmar Namibia Nauru Nepal Netherlands Netherlands Antilles New Caledonia New Zealand Nicaragua Niger Nigeria Niue Norfolk Island Northern Mariana Islands Norway Oman Pakistan Palestinian Territory, Occupied Panama Papua New Guinea Paraguay Peru Philippines Pitcairn Poland Portugal Puerto Rico Qatar Republic of the Congo Reunion Romania Russia Rwanda Saint Barthelemy Saint Helena, Ascension and Tristan da Cunha Saint Kitts and Nevis Saint Lucia Saint Martin (French part) Saint Pierre and Miquelon Saint Vincent and the Grenadines Samoa San Marino Sao Tome and Principe Saudi Arabia Senegal Serbia Seychelles Sierra Leone Singapore Sint Maarten (Dutch part) Slovakia Slovenia Solomon Islands Somalia South Africa South Georgia and the South Sandwich Islands South Korea South Sudan Spain Sri Lanka Sudan Suriname Svalbard and Jan Mayen Swaziland Sweden Switzerland Syrian Arab Republic Taiwan Tajikistan Tanzania Thailand Timor-Leste Togo Tokelau Tonga Trinidad and Tobago Tunisia Turkey Turkmenistan Turks and Caicos Islands Tuvalu Uganda Ukraine United Arab Emirates United Kingdom United States Minor Outlying Islands Uruguay US Virgin Islands Uzbekistan Vanuatu Venezuela Vietnam Wallis and Futuna Western Sahara Yemen Zambia Zimbabwe Level of Education High School Some College Associates RN (Diploma Nurse) RN (ADN) Bachelors BSN (Nursing) Some Graduate Masters MSN (Nursing) Doctorate or Equivalent Military Affiliation None US Service Member Veteran Military Spouse Dependent <!-- Citizen of the EU? No Yes -->

If you would like more information relating to how we may use your data, please review our privacy policy.

By completing this form and clicking the button below, I consent to receiving calls, text messages and/or emails from BISK, its client institutions, and their representatives regarding educational services and programs. I understand calls and texts may be directed to the number I provide using automatic dialing technology. I understand that this consent is not required to purchase goods or services.
HIMSS AEP Badge
SAS logo
I chose USF Health’s program because the cost was reasonable, it took less than two years to complete, and it was all online.

Ethel Massing, MSHI

“I started my MSHI when I was in residency training, working 70-80 hours per week. If I’m able to complete the program, anyone can do it.”

Dr. Naveen Baskaran, MD, MSHI

“I appreciated the eight-week course model because it allowed me to take only one class at a time and to complete only four courses a year. A traditional schedule would have required me to double up on classes, but the eight-week model allowed me to concentrate on each subject more deeply.”

Brad Simpson, MSHI

var deferTimer; var libs = [ "https://cdn.jsdelivr.net/jquery.validation/1.15.0/jquery.validate.min.js", "https://cdn.jsdelivr.net/jquery.validation/1.15.0/additional-methods.min.js" ] function setValidation(){ console.log('set validation'); jQuery(function($) { $("#leadSystemSubmitBtn").click(goBoas); function goBoas() { if (form.valid()) { console.log('VALID'); $('.hidden-spinner').removeClass('hidden'); }else{ console.log('NOT VALID'); event.preventDefault(); } } function nonProductionEnvironment() { // this enables us to execute code if we are in our dev/staging environments. // nice for keeping production clean of console logs, debuggers, alerts, etc. // while not having to make an update in our dev/staging environements var result = false; var url = window.location.hostname; var testingEnvironments = [ "localhost", "floridatechonline-com-dev.herokuapp.com", "floridatechonline-com-staging.herokuapp.com", "https://staging-wpmulti-aws.bisk.com/", "staging-wpmulti-aws.bisk.com" ]; // if current hostname != inArray of testingEnvironments, assume we are in production to be safe if ($.inArray(url, testingEnvironments) > -1) { result = true; } return result; } var redirectLoginUrl = ""; var form = $('#publicBoasLead'); //$(document).ready(function(){ if (nonProductionEnvironment()) { form.attr('action', "http://staging-app.usfhealthonline.com/v3/Handlers/ApplyNowHandler.ashx?domainID=8"); } //}) if (nonProductionEnvironment()) { redirectLoginUrl = "https://staging-app.usfhealthonline.com/v3/login.aspx"; } $(window).on("load", function() { console.log('FORM VALIDATE'); form.validate({ onsubmit: false, rules: { institution: { required: true }, firstName: { required: true, maxlength: 15, lettersonly: true }, lastName: { required: true, maxlength: 15, lettersonly: true }, email: { required: true, email: true, maxlength: 50, }, phone: { required: true, phoneUS: true }, programOfInterest: { required: true }, country: { required: true }, education: { required: true }, military: { required: true }, }, submitHandler: function() { if (form.valid()) { form.submit(); } }, invalidHandler: function(event, validator) { //styling reference: the error is wrapped in: label id={name-error} class={error} // 'this' refers to the form var errors = validator.numberOfInvalids(); if (errors) { var message = errors == 1 ? 'You missed 1 field. It has been highlighted' : 'You missed ' + errors + ' fields. They have been highlighted'; $("div.error span").html(message); $("div.error").show(); } else { $("div.error").hide(); } } }); }); }); } function injectLibs(){ if(libs.length > 0){ //grab the next item on the stack var nextLib = libs.shift(); var headTag = document.getElementsByTagName('head')[0]; //create a script tag with this library var scriptTag = document.createElement('script'); scriptTag.src = nextLib; //when successful, inject the next script scriptTag.onload = function(e){ console.log("---> loaded: " + e.target.src); injectLibs(); }; //append the script tag to the headTag.appendChild(scriptTag); console.log("injecting: " + nextLib); } else{ setValidation(); } } function deferLoad(){ if(!window.jQuery){ console.log('TRY IF JQUERY LOADED'); deferTimer = setTimeout(function(){ deferLoad()}, 50) } else{ console.log('JQUERY LOADED'); clearTimeout(deferTimer); injectLibs(); } } deferLoad();