Update messaging
This commit is contained in:
parent
1f3a90e08f
commit
1818b33d0b
@ -7,18 +7,15 @@ module.exports = {
|
|||||||
printCredentials(username, studentId, req, res) {
|
printCredentials(username, studentId, req, res) {
|
||||||
// Create the output text
|
// Create the output text
|
||||||
const infoArray = [
|
const infoArray = [
|
||||||
'Username:',
|
`Username: ${username}`,
|
||||||
`${username}`,
|
|
||||||
'',
|
'',
|
||||||
'Email:',
|
'Email:',
|
||||||
`${username}@kvcc.me.edu`,
|
`${username}@kvcc.me.edu`,
|
||||||
'',
|
'',
|
||||||
'Student ID:',
|
`Student ID: ${studentId}`,
|
||||||
`${studentId}`,
|
|
||||||
'',
|
'',
|
||||||
'Note: When signing into the MyKV Portal, use your Username not your Email.',
|
'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'
|
||||||
'For further assistance contact ithelp@mainecc.edu'
|
|
||||||
];
|
];
|
||||||
const infoString = infoArray.join('\n');
|
const infoString = infoArray.join('\n');
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user