A component that renders a sign-up form with email and password fields.
For more information, see the custom pages guide.
Props
noPasswordRepeat(optional):boolean— If set totrue, the form will not include a password repeat field.
Example
import { CredentialSignUp } from '@stackframe/stack';
export default function Page() {
  return (
    <div>
      <h1>Sign Up</h1>
      <CredentialSignUp noPasswordRepeat />
    </div>
  );
}