aboutsummaryrefslogtreecommitdiff
path: root/templates/register.rs.html
blob: 5c2e3f2c10c195411e7971b5245d174caf944137 (plain) (blame)
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
27
@use super::{header_html, footer_html};

@()

@:header_html()
<h1>Create your NCCd Account</h1>
<form method="POST" action="/dash/auth/register">
    <div>
        <label for="email">Email</label>
        <input type="text" id="email" name="email">
    </div>
    <div>
        <label for="prefname">Preferred name</label>
        <input type="text" id="prefname" name="prefname">
    </div>
    <div>
        <label for="password">Password</label>
        <input type="password" id="password" name="password">
    </div>
    <div>
        <label for="password-confirm">Confirm password</label>
        <input type="password" id="password-confirm" name="password-confirm">
    </div>
    <input type="submit" class="accent">Submit</input>
</form>
Or try <a href="/dash/auth/login">logging in</a>
@:footer_html()