Files
Notes/Views/Login/Login.cshtml
2025-07-17 16:42:25 -04:00

16 lines
327 B
Plaintext

@Html.ValidationSummary()
<form method="post" class="login-form">
<input type="password" name="passphrase" placeholder="Passphrase" />
<button type="submit">Login</button>
</form>
@section scripts {
<script>
$(function () {
$('input[name=passphrase]').focus();
});
</script>
}