Skip to content

Commit

Permalink
Modified forms labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Vasco Lameiras committed May 31, 2017
1 parent 0857ff3 commit d92eeef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/create-article.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ <h1>Create Article</h1>
<!--Create a form that POSTs to the `/article/create` route-->
<form class="form" action="/article/create" method="POST">
<div class="form-group">
<label for="title">Username</label>
<label for="title">Title</label>
<input type="text" class="form-control" id="title" name="title" placeholder="Title">
</div>
<div class="form-group">
<label for="content">Password</label>
<label for="content">Content</label>
<textarea name="content" class="form-control" rows="10" id="content" placeholder="Article Content"></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
Expand Down

0 comments on commit d92eeef

Please sign in to comment.