Sign-in Modals

Set up

Import SignInModal, ModalButton components and set variables in the script tag.

import { SignInModal, ModalButton } from "flowbite-svelte";

Examples

Create a button and modal.

 <ModalButton
    id="signin1"
    btnName="Sign In Modal"
    btnColor="green"
/>
<SignInModal
  id="signin1"
  titleSignIn="SignIn Modal Title"
  lostPasswordLink="/"
  signUpLink="/about"
  formLink="/modals"
/>

Props

The component has the following props, type, and default values. See types page for type information.

ModalButton

Name Type Default
idstring 'modal-id'
btnNamestring 'Modal Name'
btnColorColors 'blue'

SignInModal

Name Type Default
idstring 'signin-modal'
btnSignInColorColors 'blue'
titleSignInstring 'Sign in to our platform'
lostPasswordLink string
rememberMe date false
signUp string
action string
emailPlaceholderstring 'name@company.com'

References