e.stopPropagation()}>
${this.needsEmailVerification ? "Verify Email" : this.needsRegistration ? "Create Account" : "Sign In"}
${
this.needsEmailVerification
? html`
We sent a 6-digit verification code to ${this.email}.
Check your email and enter the code below.
`
: html`
${
this.needsRegistration
? html`
Looks like you might not have an account yet. Create one below!
`
: ""
}
${
!this.needsRegistration && this.passkeySupported
? html`
or sign in with password
`
: ""
}
`
}