Initial upload

This commit is contained in:
rzmk 2021-06-21 21:17:25 -04:00
commit f7d2a75168
14 changed files with 1106 additions and 0 deletions

14
views/compose.ejs Normal file
View 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"); -%>