CSV File Format Requirements
Your CSV file must contain the following columns in this exact order:
first_name,last_name,email,student_id,password
John,Doe,john.doe@example.com,2023-12345,password123
Jane,Smith,jane.smith@example.com,2023-12346,secure456
Bob,Johnson,bob.johnson@example.com,,defaultpass
Column Descriptions:
- first_name: User's first name (required)
- last_name: User's last name (required)
- email: User's email address (required, must be unique)
- student_id: Student ID number (optional, can be empty)
- password: User's password (required, min 6 characters)
Important Notes:
- The first row must contain column headers exactly as shown
- Email addresses must be unique and valid
- If student_id is empty, leave the cell blank (don't use spaces)
- Passwords must be at least 6 characters long
- Maximum 100 users per upload