Skip to:
Content
Pages
Categories
Search
Top
Bottom
  • 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…

Skip to toolbar