diff options
Diffstat (limited to 'public/views/createPost.html')
| -rw-r--r-- | public/views/createPost.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/public/views/createPost.html b/public/views/createPost.html index e01ad55..30c9cad 100644 --- a/public/views/createPost.html +++ b/public/views/createPost.html @@ -72,7 +72,7 @@ <h1>Create New Post</h1> </header> <div class="span9" style="padding: 0; margin: 0;"> - <div id="createPost"> + <div id="createPost" class="form"> <div class="form-group"> <label for="title">Title</label> <input type="text" class="form-control" id="title" name="title" placeholder="Title" @@ -102,7 +102,11 @@ <div id="error" class="alert alert-error hidden"> <strong>Error!</strong> Please fill out all fields. </div> - <button class="btn btn-primary" id="publishPost">Create New Post</button> + <div class="control-group"> + <div class="controls"> + <button type="submit" class="btn btn-primary" id="publishPost">Create New Post</button> + </div> + </div> </div> </div> </div> |
