You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to have a button or Menu item that can be used to request login details.
What I have now is a Menu item as follows: MenuItem('Login', '/login', icon="login"),
And then I define the login page as:
@app.page('/login', 'Login Page', auth_needed='user')
def nodes_view_page():
return [Header('This is the login redirect page', 3)]
I also redirect users on Login to '/' so they never see the actual login page.
Of course this forces a login BUT it sends the 'No Permission' notification to the user ... which looks a bit strange if this is meant to simply be a link to a login prompt.
Is there a way to bypass the Notification and simply allow the user to login with their credentials?
Or even better, could there be an adminui app. option to enable the display of a 'Login' link on the top right of the 'top bar' if a user is not currently logged in, and if the user is logged in, it simply shows their login name (as it does now)?
The text was updated successfully, but these errors were encountered:
I'd like to have a button or Menu item that can be used to request login details.
What I have now is a Menu item as follows:
MenuItem('Login', '/login', icon="login"),
And then I define the login page as:
I also redirect users on Login to '/' so they never see the actual login page.
Of course this forces a login BUT it sends the 'No Permission' notification to the user ... which looks a bit strange if this is meant to simply be a link to a login prompt.
Is there a way to bypass the Notification and simply allow the user to login with their credentials?
Or even better, could there be an adminui app. option to enable the display of a 'Login' link on the top right of the 'top bar' if a user is not currently logged in, and if the user is logged in, it simply shows their login name (as it does now)?
The text was updated successfully, but these errors were encountered: