Created
February 8, 2016 15:45
-
-
Save calrrox/05698965e4820d187e6d to your computer and use it in GitHub Desktop.
snippet for atom
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
'.text.html': | |
'Form Bootstrap3': | |
'prefix': 'bs3-form' | |
'body': """ | |
<form class="$1" action="$2" method="POST" role="form"> | |
<legend>Form title</legend> | |
<div class="form-group"> | |
<label for="$3">label</label> | |
<input type="text" class="form-control" id="$4" placeholder="Input field"> | |
<p class="help-block">Help text here.</p> | |
</div> | |
<button type="submit" class="btn btn-primary">Submit</button> | |
</form> | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment