Notes/Views/Login/Login.cshtml
2024-12-16 15:22:03 -05:00

16 lines
308 B
Plaintext

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