MathAndEnglishWorksheets.com

Teacher Login

šŸŽ Teacher Portal

Access your SkillCheck dashboard

Sign In Register

Email Address:

Password:

Remember me

Sign In to Dashboard

Forgot your password?

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

`); } else { alert(ā€˜Error: ’ + response.data); button.text(originalText).prop(ā€˜disabled’, false); } }, ā€˜json’); }); }); .tab-button:hover { opacity: 0.9; } input:focus { outline: none; border-color: #3B82F6 !important; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); } button:hover { transform: translateY(-1px); transition: transform 0.2s; }