Created
November 27, 2013 00:26
-
-
Save taywils/7668761 to your computer and use it in GitHub Desktop.
spark_view_step_3_2
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
<div class="starter-template"> | |
<form class="form-horizontal" role="form" id='article-create-form' method='POST' action='/article/create'> | |
<div class="form-group"> | |
<label class="col-sm-3 control-label" for="title">Title: </label> | |
<div class="col-sm-5"> | |
<input class="form-control" type='text' id="title" name='article-title' placeholder="Enter a new title" /> | |
</div> | |
</div> | |
<div class="form-group"> | |
<label class="col-sm-3 control-label" for="summary">Summary: </label> | |
<div class="col-sm-5"> | |
<input class="form-control" type='text' id="summary" name='article-summary' placeholder="Enter a new summary" /> | |
</div> | |
</div> | |
</form> | |
<label for="content">Content</label> | |
<textarea class="form-control" name='article-content' id="content" rows='4' cols='50' form='article-create-form' placeholder="Enter article content"></textarea> | |
<input type='submit' value='Publish' class="btn btn-primary" form='article-create-form' /> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment