@devtanbir
1 year ago
To add an image behind the Sign Up page and personalize the form, you can use custom CSS. See the example below:
#signup-form { background-image: url('your-image.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 24px; }
Replace your-image.jpg with the URL of your desired image.