12.2. Token Enrollment Wizard¶
The enrollment wizard helps the user to enroll his first token. When enrolling the first token, we assume, that the user is not very familiar with the eduMFA web UI. So the enrollment wizard only contains a very reduced API.
12.2.1. Necessary requirements for the enrollment wizard¶
The enrollment wizard will only be displayed, if the user has no token assigned, yet. Thus the user must be able to login to the web UI with his userstore password. This is the default behaviour or set the corresponding policy.
Set a policy in scope webui and activate the policy action tokenwizard.
The user will not be able to choose a token type. But the default token type will be enrolled.
You can see the token enrollment wizard in action here: https://www.youtube.com/watch?v=diAGbsiG8_A
12.2.2. Customization¶
There are two dialog windows in the wizard. You can configure the text in the wizard in your html templates defined in these files:
Before the token is enrolled you can add your custom text in these two files:
static/customize/views/includes/token.enroll.pre.top.html
static/customize/views/includes/token.enroll.pre.bottom.html
When it is enrolled and the user needs to do something (e.g. scanning the qr-code), you can modify the text here:
static/customize/views/includes/token.enroll.post.top.html
static/customize/views/includes/token.enroll.post.bottom.html
Note
You can change the directory static/customize to a URL that fits your needs the best by defining a variable EDUMFA_CUSTOMIZATION in the file edumfa.cfg. This way you can put all modifications in one place apart from the original code.
12.2.2.1. Example¶
Your eduMFA system is running in the URL sub path /edumfa
.
The files could be addressed via a path component mydesign
(in this case edumfa/mydesign
).
Thus the WebUI will look for the files in the URL path /edumfa/mydesign/views/includes/
.
So you set in edumfa.cfg
:
EDUMFA_CUSTOMIZATION = "/mydesign"
Your customized files are located in /etc/edumfa/customize/views/includes/
.
In the Apache webserver you need to map /edumfa/mydesign
to /etc/edumfa/customize
:
Alias /edumfa/mydesign /etc/edumfa/customize