> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-docs-event-stream-action-templates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Learn how to register and configure a regular web application using the Auth Dashboard.

# Register Regular Web Applications

To integrate Auth0 with a regular web app, you must first register your app with Auth0 using the <Tooltip tip="Auth0 Dashboard: Auth0's main product to configure your services." cta="View Glossary" href="/docs/glossary?term=Auth0+Dashboard">Auth0 Dashboard</Tooltip>. Regular web apps are traditional web applications that perform most of their application logic on the server (for example, Express.js, ASP.NET). To learn more about application types, read [Application Types](/docs/get-started/applications).

1. Go to [Dashboard > Applications > Applications](https://manage.auth0.com/#/applications) and click **Create Application**.
2. Enter a descriptive name for your application, select **Regular Web Applications**, and click **Create**.

   Once the new application is created, you can view the **Application Settings** page, which includes the following tabs:

   | Settings Tab         | Description                                                                                                                                                                                                                                                                                                                                                                      |
   | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
   | **Quick Start**      | Shows all the available documentation for your application type.                                                                                                                                                                                                                                                                                                                 |
   | **Settings**         | Shows all available settings for your application. By default, most of the settings will be created for you. To learn more, read [Application Settings](/docs/get-started/applications/application-settings).                                                                                                                                                                    |
   | **Credentials**      | Shows the application’s authentication method and configured credentials. To learn more, read [Application Credentials](/docs/secure/application-credentials)                                                                                                                                                                                                                    |
   | **Add-ons**          | Allows you to enable plugins associated with an application. These are SAML or WS-Fed web apps for which Auth0 generates access tokens. To learn more, read [Enable SAML2 Web App Addon](/docs/authenticate/protocols/saml/saml-sso-integrations/enable-saml2-web-app-addon) and [Configure WS-Fed Applications](/docs/get-started/applications/update-application-connections). |
   | **Connections**      | Allows you to enable connections for your application. Connections are sources of users; they can be enabled and shared between multiple applications. To learn more, read [Connections](/docs/authenticate/identity-providers).                                                                                                                                                 |
   | **Organizations**    | Allows you to authenticate users into organizations to which they belong. To learn more, read [Organizations](/docs/manage-users/organizations).                                                                                                                                                                                                                                 |
   | **Login Experience** | Allows you to configure the login experience for users in your Organization. For more information, read [Understand how Auth0 Organizations Work](/docs/manage-users/organizations/organizations-overview#login-experience).                                                                                                                                                     |

   To learn more, read [Application Settings](/docs/get-started/applications/application-settings).
3. Scroll down and locate the **Trust Token Endpoint IP Header** setting. If your application architecture supports it, enable this setting and click **Save Changes**. This setting helps protect against brute-force attacks by allowing Auth0 to trust IP headers from your proxy.

## Next steps

Once you have registered and configured your application, follow these next steps:

1. Configure a connection and enable it for your application.
2. Implement authentication in your app code by using your Auth0-registered application. See our [Auth0 Quickstarts](/docs/quickstarts), where you'll find detailed instructions and samples for a variety of technologies. You'll also learn how to implement login and logout, handle your user sessions, retrieve and display user profile information, and more.

* Use [Auth0 APIs](/docs/api).

  * The [Authentication API](https://auth0.com/docs/api/authentication) handles all primary identity-related functions (for example, login, logout, and get user profile). Most users consume this API through our Quickstarts, the [Auth0.js library](/docs/libraries/auth0js), or the [Lock widget](/docs/libraries/lock). However, if you are building all of your authentication UI manually, you can interact with this API directly.
  * The [Management API](https://auth0.com/docs/api/management/v2) allows you to automate various tasks that you can also access via the Auth0 Dashboard (for example, creating users and setting application grant types).

## Learn more

* [Application Settings](/docs/get-started/applications/application-settings)
* [Regular Web Applications with Single Sign-On](/docs/get-started/architecture-scenarios/sso-for-regular-web-apps)
