16 lines
308 B
Plaintext
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>
|
|
}
|