This commit is contained in:
Skylar Grant 2024-09-13 09:26:31 -04:00
parent 79219ef3ee
commit 73a0d5a1be
1 changed files with 5 additions and 6 deletions

View File

@ -23,13 +23,12 @@ module.exports = {
credentials(username, studentId) { credentials(username, studentId) {
// Create the output text // Create the output text
return [ return [
{ font: 'Courier-Bold', text: `Username: ${username}` }, { font: 'public/Outfit-Regular.ttf', text: `Username:` },
{ font: 'public/Outfit-Regular.ttf', text: '' }, { font: 'public/RobotoMono-Regular.ttf', text: `${username}\n` },
{ font: 'public/Outfit-Regular.ttf', text: 'Email:' }, { font: 'public/Outfit-Regular.ttf', text: 'Email:' },
{ font: 'Courier-Bold', text: `${username}@kvcc.me.edu` }, { font: 'public/RobotoMono-Regular.ttf', text: `${username}@kvcc.me.edu\n` },
{ font: 'public/Outfit-Regular.ttf', text: '' }, { font: 'public/Outfit-Regular.ttf', text: `Student ID:` },
{ font: 'Courier-Bold', text: `Student ID: ${studentId}` }, { font: 'public/RobotoMono-Regular.ttf', text: `${studentId}\n` },
{ font: 'public/Outfit-Regular.ttf', text: '' },
{ font: 'public/Outfit-Regular.ttf', text: 'Note: the MyKV Portal uses your username to sign in, not email.' }, { font: 'public/Outfit-Regular.ttf', text: 'Note: the MyKV Portal uses your username to sign in, not email.' },
] ]
}, },