cancel
Showing results for 
Search instead for 
Did you mean: 

NAC Customize Preregistration Voucher

NAC Customize Preregistration Voucher

Stefan_Wirbatz
New Contributor
Hi,

we are running a NAC Appliance and use GuestPortal for Guests. Receptionist will create a user for guest. So far everything is working.

Now we like to do some more customization on the preregistration portal. In detail we want to modify the printout page. We already know how to customize strings like preregUserInstructionsNoUrl. But we want to adjust more things. Is it possible to edit this page completly in html?

We like to do the following:

1) Make this voucher a two page print out (one in german and one in english). For that we need an ability to place variables like username etc. by our own. Is that possible?
2) We like to change logo for printout too. Is that possible?
3) Remove Helpdesk Information from bottom. Is that somehow possible?

best regards,
stefan

1 REPLY 1

Stefan_Wirbatz
New Contributor
We did some CSS magic  . So there is quick and dirty way to fix problem 2) and 3). But still no idea for problem 1).

IMPORTANT maybe some other websites can be affected. We try to limit this effect only on voucher print out!

Display no helpdesk information on footer:
.preRegisteredUser span.centered { display: none!important; }

Display no header logo:
.preRegisteredUser .header { display: none!important; }

Move table with login credentials to first position:
.preRegisteredUser table.printTable { position: absolute!important; top: 20px!important; }

Move the rest of text under login credentials:
.preRegisteredUser .userContent { margin-top: 90px!important; }

GTM-P2G8KFN