I am writing a form and using the required tag and the placeholder tag on inputs. However inputs of type text do not seem to become required as the placeholder text is already making it validate.
Is this a known problem or is there a workaround? (example of form below)
Cheers
<form method="post">
<input type="text" placeholder="Your Name" required>
</form>