XRE Authentication Credentials

Default Instructor Account

Username: instructor
Password: xre2025
Role: instructor (full access + user management)

This account has:

  • ✅ Access to all course content
  • ✅ User management permissions
  • ✅ Admin panel access at /admin.html
  • ✅ Ability to add/edit/delete other users

Other Default Accounts

Admin Account:

  • Username: admin
  • Password: admin2025
  • Role: admin

Sample Student Accounts:

  • Username: student1 Password: student123 Role: student
  • Username: student2 Password: student456 Role: student

How to Login as Instructor

  1. Visit any course content page (A1, A2, B1, etc.)
  2. You’ll be redirected to the login page
  3. Enter:
    • Username: instructor
    • Password: xre2025
  4. Click “Sign In”
  5. You’ll be redirected back to your intended page
  6. The navigation will show “Welcome, instructor” and “Manage Users” link

Accessing User Management

After logging in as instructor:

  1. Click “Manage Users” in the top navigation
  2. This takes you to /admin.html
  3. Here you can:
    • View user statistics
    • Add new students
    • Edit existing users
    • Delete users
    • Import/export user lists

Changing the Instructor Password

If you want to change the instructor password:

Option 1: Through Admin Panel

  1. Login as instructor
  2. Go to “Manage Users”
  3. Click “Edit” next to the instructor user
  4. Enter new password

Option 2: Edit Code Directly

In both login.html and admin.html, change:

'instructor': { password: 'xre2025', role: 'instructor' },

to:

'instructor': { password: 'YOUR_NEW_PASSWORD', role: 'instructor' },

Security Notes

  • The instructor account has full privileges
  • Keep the password secure
  • Consider changing the default password for production use
  • The same credentials work for both the login page and admin panel