How to create only form without table?
How to create only form without table?
HetSompura
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
See of one of these Standalone editing examples does what you want.
Kevin
Yes, it is possible to create a signup form on a page using HTML and CSS without using a modal or table.
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!
@Parul12 is this ChatGPT generated? It doesn't appear relevant to the specifics of this thread or forum.
Allan