How to create only form without table?

How to create only form without table?

HetSompuraHetSompura Posts: 1Questions: 1Answers: 0

I would like to create a signup form using editor, is it possible to create form on page it self not in modal and without table?
please provide example.
thank you

This question has an accepted answers - jump to answer

Answers

  • kthorngrenkthorngren Posts: 20,140Questions: 26Answers: 4,735
    Answer ✓

    See of one of these Standalone editing examples does what you want.

    Kevin

  • Parul12Parul12 Posts: 2Questions: 1Answers: 0

    Yes, it is possible to create a signup form on a page using HTML and CSS without using a modal or table.

    Sign up

    This code creates a basic form with three input fields for name, email, and password, and a submit button. The required attribute on each input field specifies that the user must fill in that field before submitting the form.

    You can use CSS to style the form as desired. Here is an example CSS snippet to get you started:

    form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    }

    label {
    margin-bottom: 0.5rem;
    }

    input {
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
    }

    button[type="submit"] {
    padding: 0.5rem 1rem;
    background-color: #0077cc;
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    }

    button[type="submit"]:hover {
    background-color: #005fa3;
    }

    This CSS code styles the form to display the input fields and label elements in a column layout, adds some basic styling to the input fields, and styles the submit button with a blue background and white text. You can adjust the CSS as needed to match your desired design.

    I hope this helps you get started with creating your signup form!

  • allanallan Posts: 61,438Questions: 1Answers: 10,049 Site admin

    @Parul12 is this ChatGPT generated? It doesn't appear relevant to the specifics of this thread or forum.

    Allan

Sign In or Register to comment.