diff --git a/mccs-it/thermal/modules/Thermal.js b/mccs-it/thermal/modules/Thermal.js index 294ea87..81b8267 100644 --- a/mccs-it/thermal/modules/Thermal.js +++ b/mccs-it/thermal/modules/Thermal.js @@ -23,13 +23,12 @@ module.exports = { credentials(username, studentId) { // Create the output text return [ - { font: 'Courier-Bold', text: `Username: ${username}` }, - { font: 'public/Outfit-Regular.ttf', text: '' }, + { font: 'public/Outfit-Regular.ttf', text: `Username:` }, + { font: 'public/RobotoMono-Regular.ttf', text: `${username}\n` }, { font: 'public/Outfit-Regular.ttf', text: 'Email:' }, - { font: 'Courier-Bold', text: `${username}@kvcc.me.edu` }, - { font: 'public/Outfit-Regular.ttf', text: '' }, - { font: 'Courier-Bold', text: `Student ID: ${studentId}` }, - { font: 'public/Outfit-Regular.ttf', text: '' }, + { font: 'public/RobotoMono-Regular.ttf', text: `${username}@kvcc.me.edu\n` }, + { font: 'public/Outfit-Regular.ttf', text: `Student ID:` }, + { font: 'public/RobotoMono-Regular.ttf', text: `${studentId}\n` }, { font: 'public/Outfit-Regular.ttf', text: 'Note: the MyKV Portal uses your username to sign in, not email.' }, ] },