This is a program that allows students to easily interact and communicate with their counselors.
This program has the students' and counselors' schedules and allows the students to see their counselor's schedule, make meetings with them, and then updates both the student's and counselor's schedules for that day. Students also have an inbox and can send messages to their counselor, and their counselor also has an inbox and can messages back to their students. The counselors can also see their whole list of students.
This program creates the counselors' accounts from the text file "CounselorSchedules.txt". To customize the counselors, create a file with the same title or edit the file and list their information. The format is (do not include the numbers):
- First Name
- Last Name
- Password
- First Period
- Second Period
- Third Period
- Fourth Period
- Fifth Period
- Sixth Period
- Seventh Period
- Eighth Period
Repeat this format starting on the very next line for the next counselor's information.
The program creates the students' accounts from the text files "Counselor[0]Students.txt", "Counselor[1]Students.txt", and "Counselor[2]Students.txt". The number of these files should correspond with how many counselors there are. Each counselor gets their own file of students. The first counselor's information you created in "CounselorSchedule.txt" corresponds to the students in the file "Counselor[0]Students.txt" and so forth. You can create any number of counselors and students. The titles of the text files that contain the students' information should be of the format "Counselor[]Students.txt" where there is some number between the square brackets. The number between the square brackets should be one less than the place the corresponding counselor is in "CounselorSchedules.txt". So the first counselor's (in "CounselorSchedules.txt") students are in "Counselor[0]Students.txt", the second counselor's students are in "Counselor[1]Students.txt" and so forth. The students' information in the text files should be the same format as the counselors' information in "CounselorSchedules.txt".
Each user has a user name and password that they use to sign in. Their user name is their first name and their last name together without a space in between and with the first letter of each capitalized. For example, if their name was "John Doe", their user name would be "JohnDoe". Their password was set in the text files "Counselor[]Students.txt".