Can I change the template upon logging in?
Yes! This feature was added in version 1.4.
Copy the file located in the plugin directory at wp-content/plugins/two-factor-2fa-via-email/assets/2fa-page.php
to your themes folder (and rename it) to wp-content/themes/theme-name/ss88-2fa-page.php
Once you have done this, you can customize the page.
To make sure the relevant text is output on this security page, place the following code somewhere within your new template:
<?php echo wp_kses_post($HTML); ?>
You’ll notice in the original template, the above code is placed here:
If you do not include the above snippet of code, message like “token expire” and “check your email” will not show.