summaryrefslogtreecommitdiff
path: root/views/login.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'views/login.ejs')
-rw-r--r--views/login.ejs26
1 files changed, 26 insertions, 0 deletions
diff --git a/views/login.ejs b/views/login.ejs
new file mode 100644
index 0000000..4415a64
--- /dev/null
+++ b/views/login.ejs
@@ -0,0 +1,26 @@
+<%- include('partials/header') %>
+<%- include('partials/nav') %>
+<%- include('partials/search') %>
+
+<div class='content'>
+ <%- include('partials/categories') %>
+ <div class='main'>
+ <div class='logCard'>
+ <h4 style='text-align: center'>Login</h4>
+ <div class='fff'>
+ <form id='logform' action="/login" method='POST'>
+ <label for="">Email:</label>
+ <input type="email" name='username'>
+ <label for="">Password:</label>
+ <input type="password" name='password'>
+ <button type='submit'>Login</button>
+ </form>
+ </div>
+ </div>
+ </div>
+ <%- include('partials/popular') %>
+</div>
+
+<%- include('partials/magicCats') %>
+<%- include('partials/magicPops') %>
+<%- include('partials/footer') %>