diff options
| author | Bobby <[email protected]> | 2022-03-16 22:00:52 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-03-16 22:00:52 -0400 |
| commit | 4ff5c19c9f3c4c9488d8cf70c64e045d5d01d6b8 (patch) | |
| tree | 43db48c3ece7f6b6d6a5303a3424e0613055d309 /public/views/createPost.html | |
| parent | 339e86edb5c8ad729cf0f4cfac3c3cde081d374e (diff) | |
| download | luciferreeves.github.io-4ff5c19c9f3c4c9488d8cf70c64e045d5d01d6b8.tar.xz luciferreeves.github.io-4ff5c19c9f3c4c9488d8cf70c64e045d5d01d6b8.zip | |
function to get posts
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> |
