Created
July 7, 2016 17:47
-
-
Save funkytaco/5f2608fc53d1f0bd0010dfff5819dbbf 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
<form class="form-horizontal" action="/api/1.0/tickets/" method="POST"> | |
<fieldset> | |
<div class="form-group"> | |
<label for="username" class="control-label col-xs-2">User</label> | |
<div class="col-xs-10"> | |
<input disabled="disabled" type="user" class="form-control" id="username" name="username" placeholder="{{logged_in_user}}"> | |
</div> | |
</div> | |
<div class="form-group"> | |
<label for="summary" class="control-label col-xs-2">Summary</label> | |
<div class="col-xs-10"> | |
<input type="text" class="form-control" id="summary" name="summary" placeholder="Summary"> | |
</div> | |
</div> | |
<div class="form-group"> | |
<label for="description" class="control-label col-xs-2">Description</label> | |
<div class="col-xs-10"> | |
<textarea rows="3" class="form-control" id="description" name="description" placeholder="Description"></textarea> | |
</div> | |
</div> | |
<div class="form-group"> | |
<div class="col-xs-offset-2 col-xs-10"> | |
<button type="submit" class="btn btn-primary">Create Incident</button> | |
</div> | |
</div> | |
</fieldset> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment