2023-06-09 14:10:32 +00:00
|
|
|
@Html.ValidationSummary()
|
2023-05-10 20:22:51 +00:00
|
|
|
|
|
|
|
<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>
|
|
|
|
}
|