Update messaging

This commit is contained in:
Skylar Grant 2024-09-10 14:47:34 -04:00
parent 1f3a90e08f
commit 1818b33d0b
1 changed files with 4 additions and 7 deletions

View File

@ -7,18 +7,15 @@ module.exports = {
printCredentials(username, studentId, req, res) {
// Create the output text
const infoArray = [
'Username:',
`${username}`,
`Username: ${username}`,
'',
'Email:',
`${username}@kvcc.me.edu`,
'',
'Student ID:',
`${studentId}`,
`Student ID: ${studentId}`,
'',
'Note: When signing into the MyKV Portal, use your Username not your Email.',
'',
'For further assistance contact ithelp@mainecc.edu'
'Note: When signing into the MyKV Portal, do not include @kvcc.me.edu',
'For technical support contact IT Support at ITHelp@MaineCC.edu or (207)453-5079'
];
const infoString = infoArray.join('\n');