Notes/Views/Login/Login.cshtml

15 lines
267 B
Plaintext
Raw Normal View History

2023-06-09 14:10:32 +00:00
@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>
}