Rshiny app lannding page along with Sign in/ Sign up option

Hello all,

I have developed a shiny application. I want to include user authentication on the landing page along with other details about the application. Can you suggest some solution.

Use the shinymanager package. Doing so will allow for user authentication and give you the option to customize the login modal. All you would have to do is wrap your ui in auth_ui and place auth on the server side.

UI side:

auth_ui(
      id="auth"
    )

Server side:

auth <- callModule(
        module=auth_server,
        id="auth",
        check_credentials=check_credentials(table with credentials),
      )

More information pertaining to this can be found here: Authentication Management for Shiny Applications • shinymanager

Hope this helps!

shiny manager provides the option for sign-in only. I need some solution for sign ups too. That would be helpful

2 Likes

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.