Just finished my survey form project

Hey guys, just finished my survey form project.
Any idea on how to make it “better” or solve it more easily?

Thank you very much :slight_smile:

It looks very nice, i like the background. You could add some css syling to the textarea setting the width to 100% would be nice

1 Like

nice styling man!
i see a little thing what not is that hard.
you use:

<input type="text" class="form-control" id="name" required="required" placeholder="Enter your Name">

you make a form where you can make a post later on. so for example your input type need to look like this:

<input type="text" name="name" class="form-control" id="name" placeholder="Enter your Name" required>

later on if you want to send the form data you need a different name tag in every input type.

1 Like