summaryrefslogtreecommitdiff
path: root/views/login.ejs
blob: 4415a64c00ab682b1acc56135a4de3656ad56a2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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') %>