Skip to content

Instantly share code, notes, and snippets.

@calrrox
Created February 8, 2016 15:45
Show Gist options
  • Save calrrox/05698965e4820d187e6d to your computer and use it in GitHub Desktop.
Save calrrox/05698965e4820d187e6d to your computer and use it in GitHub Desktop.
snippet for atom
'.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