blob: 122e2b82e3f36f6d5b42b370f989c6b91a895fe1 (
plain) (
tree)
|
|
@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()
|