Hey! I am trying to customise the Signup / Signin forms using the
ThirdPartyEmailPassword
recipe via the
supertokens-auth-react
package. When implementing the
EmailPassword
recipe I can already customise the entire form page (e.g. creating custom backgrounds, images, etc..) like so:```
<EmailPasswordComponentsOverrideProvider
components={{
EmailPasswordSignIn_Override: ({ DefaultComponent, ...props }) => {
return (
// My custom Signin component
);
},
EmailPasswordSignUp_Override: ({ DefaultComponent, ...props }) => {
return (
// My custom Signup component
);
},
}}
>
```
However, when I try to achieve the same using the
ThirdpartyEmailPasswordComponentsOverrideProvider
it seems I can only customise some parts of the form (e.g. footer, etc..). Any suggestions ? Thanks 🙂