From 1818b33d0b3ba06553e8ec29fb5b6e46c164b8d1 Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Tue, 10 Sep 2024 14:47:34 -0400 Subject: [PATCH] Update messaging --- mccs-it/thermal/modules/Thermal.js | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/mccs-it/thermal/modules/Thermal.js b/mccs-it/thermal/modules/Thermal.js index 528c36d..859d31b 100644 --- a/mccs-it/thermal/modules/Thermal.js +++ b/mccs-it/thermal/modules/Thermal.js @@ -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');