Created
March 6, 2021 15:57
-
-
Save nielsVoogt/e25c9c8f2b8456bbd1239b775d21333f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<div class="nice-form-group"> | |
<label>Text</label> | |
<input type="text" placeholder="Your name" value="" /> | |
</div> | |
<div class="nice-form-group"> | |
<label>Email</label> | |
<input type="email" placeholder="Your email" value="" /> | |
</div> | |
<div class="nice-form-group"> | |
<label>Phonenumber</label> | |
<input type="tel" placeholder="Your phonenumber" value="" /> | |
</div> | |
<div class="nice-form-group"> | |
<label>Url</label> | |
<input type="url" placeholder="www.google.com" value="" /> | |
</div> | |
<div class="nice-form-group"> | |
<label>Password</label> | |
<input type="password" placeholder="Your password" /> | |
</div> | |
<div class="nice-form-group"> | |
<label>Search</label> | |
<input type="search" placeholder="Search all the things" value="" /> | |
</div> | |
<div class="nice-form-group"> | |
<label>Disabled field</label> | |
<input type="text" disabled placeholder="Your name" value="" /> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment