A component that renders a sign-in form with email and password fields.

For more information, see the custom pages guide.
Props
This component does not accept any props.
Example
import { CredentialSignIn } from '@stackframe/stack';
export default function Page() {
return (
<div>
<h1>Sign In</h1>
<CredentialSignIn />
</div>
);
}