Last active
October 13, 2019 16:29
-
-
Save joeydenbraven/f80a011c9660fad9a38b3443f9117f84 to your computer and use it in GitHub Desktop.
HTML5 form structure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form id="123" method="post" action="" form-id="123" class="-form" onsubmit="event.preventDefault();"> | |
<form-header class="-header"> | |
<h6>Chapter</h6> | |
<h3>Title</h3> | |
<p>What to expect in this form</p> | |
</form-header> | |
<form-fields class="-fields"> | |
<form-field class="-field -required" data-field="a7993147"> | |
<label class="-label"> | |
<span class="-title">Uw naam</span> | |
<span class="-instructions">Little pointers</span> | |
<span class="-error">Errors happen :)</span> | |
<span class="-field"> | |
<input type="text" id="123_456" name="456" minlength="" maxlength="" placeholder="" required="" value="" class="" data="" /> | |
<span class="-count"></span> | |
<span class="-icon -icon-valid"></span> | |
<span class="-icon -icon-alert"></span> | |
<span class="-icon -icon-error"></span> | |
</span> | |
</label> | |
</form-field> | |
</form-fields> | |
<form-message class="-message"> | |
<p>The message that's shown when form is succesfully submitted.</p> | |
</form-message> | |
<form-actions class="-actions"> | |
<button type="submit"> | |
<span class="-icon -icon-success"></span> | |
<span class="-icon -icon-failed"></span> | |
<span class="-title">Send</span> | |
</button> | |
</form-actions> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment