-
Notifications
You must be signed in to change notification settings - Fork 74
Description
As far as I can tell, there are various actions where the UI is designed to reflect that work is going on in the background. For instance, when you press 'Send verification code' there should be an indication that server-side activity is occurring until the UI is updates with the 'Verify Code' boxes.
This spinner is written into the HTML:
<div class="working" id="email_ver_wait" aria-label="Please wait" aria-hidden="true" role="alert" aria-live="polite" style="display: none;"></div>
If you manually take out the display:none you can see that this is a dot-spinner. It gives an indication of 'activity'.
However, no version of the templates as provided actually allow this to be displayed. When (for instance) the user presses 'Send verification code' there is no indication that anything is going on for a few seconds, which leads to a bad user experience. Clearly the UI should be showing the spinner.
I've tried different versions of unifiedssp and selfasserted templates, none works I believe.
Thank you.