blob: 5c2e3f2c10c195411e7971b5245d174caf944137 (
plain) (
tree)
|
|
@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()
|