> For the complete documentation index, see [llms.txt](https://navixy.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://navixy.com/docs/navixy-api/user-api/frontend/login-redirect.md).

# Login redirect

There are a number of options to user login page URL, which you can submit as GET-parameters.\
You may use this feature for providing the links on external resources (e.g. your website) to let your users go straight to the section they need, use some language by default, etc.

### Page section

You can define the section which your users land by default with `partition` parameter:

* `user`– user login page (used by default)
* `demo` – access a chosen demo account
* `register_fast` – quick registration form
* `register_full` – full registration form
* `password_remind` – password reminder

### Language

Use `locale` parameter to define which language will be used:

* `en_EN`– English
* `es_ES` – Spanish
* `ru_RU` – Russian
* etc.

If this parameter is omitted, the language which was set by default for your service will be used.

### Examples

The next code will land user on login section with Spanish language:

```
http://<your_login_page_url>/login/?partition=demo&locale=es_ES
```

The code below lands user on quick registration form with default language set by default:

```
http://<your_login_page_url>/login/?partition=quick_register&locale=es_ES
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://navixy.com/docs/navixy-api/user-api/frontend/login-redirect.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
