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

13
views/login.ejs Normal file
View file

@ -0,0 +1,13 @@
<%- include("partials/header"); -%>
<body class="text-center">
<main class="form-signin">
<form action="/login" class="form-signin" method="POST">
<h1 class="h3 mb-3 fw-normal">Blog Login</h1>
<input class="form-control" type="text" name="passInput" autofocus>
<button class="w-100 btn btn-lg btn-primary" type="submit">Log in</button>
<p class="mt-5 mb-3 text-muted">&copy; Mueez Khan</p>
</form>
</main>
</body>
<%- include("partials/footer"); -%>