Forms / Simple Login

Simple Login Form Preset

This schema represents a basic authentication credentials login prompt. It includes validation checks on password min-length and email correctness rules.

Templates

Global Form Settings

Fields list (3)

01
02
03

Welcome Back

Enter your credentials to sign in to your account.

Form Fields Reference

Field Key Field Label Input Type Description Zod Schema Rule
email Email Address Email Input Login email identifier. z.string().email()
password Password Password Input Security credentials token. z.string().min(6)
rememberMe Remember me Checkbox Check Persistent login session cookie request. z.boolean()