On my website, users can fill out a form. By default they can skip lines in the form, but how can i prevent this?
this is my code
<div class="form-group">
<label class="label-main">{{ t('Description') }}</label>
<textarea name="[description]" class="form-control" placeholder="Your message" rows="7" maxlength="500"></textarea>
</div>
Thanks!