Teacher Login
š Teacher Portal
Access your SkillCheck dashboard
Sign In Register
Email Address:
Password:
Remember me
Sign In to Dashboard
First Name:
Last Name:
Email Address:
School Name:
District (Optional):
Create Username:
Password:
Create Teacher Account
Need help? Contact your administrator
EdThings SkillCheck v0.3.2
jQuery(document).ready(function($) { // Tab switching $(ā.tab-buttonā).click(function() { $(ā.tab-buttonā).removeClass(āactiveā).css({ ābackgroundā: ā#f8f9faā, ācolorā: ā#6b7280ā }); $(this).addClass(āactiveā).css({ ābackgroundā: ā#3B82F6ā, ācolorā: āwhiteā }); $(ā.auth-formā).hide(); if ($(this).attr(āidā) === ālogin-tabā) { $(ā#login-formā).show(); } else { $(ā#register-formā).show(); } }); // Registration form submission $(ā#teacher-registerā).on(āsubmitā, function(e) { e.preventDefault(); const button = $(this).find(ābutton[type=āsubmitā]ā); const originalText = button.text(); button.text(āCreating Accountā¦ā).prop(ādisabledā, true); $.post(ā/api/skillcheck-disabledā, { action: āedthings_teacher_registerā, first_name: $(ā#first_nameā).val(), last_name: $(ā#last_nameā).val(), email: $(ā#emailā).val(), school_name: $(ā#school_nameā).val(), district_name: $(ā#district_nameā).val(), username: $(ā#usernameā).val(), password: $(ā#passwordā).val(), nonce: ā6160b9e111ā }, function(response) { if (response.success) { // Show success message with email verification instructions $(ā#register-formā).html(`
š§ Check Your Email!
${response.data}
Next Steps:
1. Check your email inbox (and spam folder)
2. Click the verification link
3. Your account will be activated automatically