Sequence
docs
React components

Login form

A standard login form with email, password, and social auth buttons.

Overview

The LoginForm component provides a pre-styled authentication form. It includes fields for email and password, a "Forgot password" link, and a "Continue with Google" button.

Usage

import { LoginForm } from '@/components/core/forms/login-form';

function SignInPage() {
  return (
    <div className="mx-auto max-w-sm">
      <LoginForm />
    </div>
  );
}

Props

This component currently does not accept custom props. It is designed as a ready-to-use pattern. To customize it, you would typically duplicate and modify the source code or wrap it.

On this page