defmodule Paleta.Components.SignIn do use Phoenix.Component attr(:title, :string, required: true) attr(:error, :string, default: nil) attr(:oauth_path, :string, required: true) attr(:footer, :boolean, default: true) def sign_in(assigns) do ~H"""
logo

<%= @title %>

Please sign in to continue

<.link href={@oauth_path} class="btn mt-5 w-full bg-primary font-medium text-white hover:bg-primary-focus focus:bg-primary-focus active:bg-primary-focus/90 dark:bg-accent dark:hover:bg-accent-focus dark:focus:bg-accent-focus dark:active:bg-accent/90" > Sign In

Looking for other app? Explore the catalog

""" end end