Initial upload
This commit is contained in:
commit
f7d2a75168
14 changed files with 1106 additions and 0 deletions
14
views/compose.ejs
Normal file
14
views/compose.ejs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
<%- include("partials/header"); -%>
|
||||
<h1>Compose</h1>
|
||||
<form class="" action="/compose" method="post">
|
||||
<div class="form-group">
|
||||
<label>Title</label>
|
||||
<input class="form-control" type="text" name="postTitle">
|
||||
<label>Post</label>
|
||||
<textarea class="form-control" name="postBody" rows="5" cols="30"></textarea>
|
||||
</div>
|
||||
<button class="btn btn-primary" type="submit" name="button">Publish</button>
|
||||
</form>
|
||||
|
||||
<%- include("partials/footer"); -%>
|
||||
Loading…
Add table
Add a link
Reference in a new issue