Wert App requires every user to have a personal account before accessing the main features. The authentication system handles two flows: creating a new account through the registration screen, and signing in through the login screen. Both windows are lightweight dialogs that validate your input locally before touching the database.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/lucavallini/wert-app/llms.txt
Use this file to discover all available pages before exploring further.
Registering an account
The registration screen (ventanaRegister) collects a username and a password — entered twice to catch typos. All three fields must be filled before the form can be submitted.
Passwords must be at least 6 characters long. Shorter passwords are rejected immediately with an error dialog before any database call is made.
Validation rules
The following checks are performed in order when you click the Register button:| Rule | Error shown |
|---|---|
| All fields are non-empty | ”Rellene los campos y vuelva a intentar” |
| Password is at least 6 characters | ”La contraseña debe tener al menos 6 caracteres” |
| Password and confirmation match | ”Las contraseñas no son iguales” |
| Username does not already exist | ”Usuario ya existe” |
Registration flow
Open the registration window
On the login screen, click the Register button. The
ventanaRegister dialog opens without closing the login screen.Enter a username
Type your desired username into the username field (
_user_input_reg). Usernames are stored and compared as-is, so casing matters.Enter a password
Type a password of at least 6 characters into the password field (
_password_input_reg).Confirm the password
Re-type the same password in the confirmation field (
_password_input_reg_verify). You can also press Enter here to submit the form.Logging in
The login screen (ventanaLogin) accepts a username and a password. Both fields are required — leaving either one blank shows the error “Rellene los campos user y password.”
Login flow
- Enter your username in
_user_inputand your password in_password_input. - Click Login or press Enter while the password field is focused.
- Wert App queries the database for a matching
username+passwordpair.
ventanaMain) opens automatically.
On failure — an error dialog shows “Usuario o contraseña incorrecta.” The login window remains open so you can try again.
On connection error — if the database is unreachable, a connection error dialog displays the underlying exception message.