Notes/Views/Login/Login.cshtml

19 lines
302 B
Plaintext
Raw Normal View History

@{
ViewBag.Title = "Login";
}
@Html.ValidationSummary()
<form method="post">
2023-05-10 21:35:40 +00:00
<input type="password" name="passphrase" placeholder="Passphrase" />
2023-05-16 21:16:31 +00:00
</form>
@section scripts {
<script>
$(function () {
$('input[name=passphrase]').focus();
});
</script>
}