aboutsummaryrefslogtreecommitdiff
path: root/templates/login.rs.html
blob: 122e2b82e3f36f6d5b42b370f989c6b91a895fe1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@use super::{header_html, footer_html};

@()

@:header_html()
<h1>NCCd Login</h1>
<form method="POST">
    <div>
    <label for="username">Email</label>
    <input type="text" name="email">
    </div>
    <br/>
    <div>
    <label for="password">Password</label>
    <input type="password" name="password">
    </div>
    <div>
        <button type="submit" class="accent">Submit</button>
</form>

Or try <a href="/dash/auth/register">creating an account</a>
@:footer_html()