Merge branch 'master' into dev/multiple-notes

This commit is contained in:
Ryan Peters
2023-05-17 21:22:48 -04:00
9 changed files with 122 additions and 9 deletions

18
Views/Login/Login.cshtml Normal file
View File

@ -0,0 +1,18 @@
@{
ViewBag.Title = "Login";
}
@Html.ValidationSummary()
<form method="post">
<input type="password" name="passphrase" placeholder="Passphrase" />
</form>
@section scripts {
<script>
$(function () {
$('input[name=passphrase]').focus();
});
</script>
}

View File

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, user-scalable=0;" />
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, user-scalable=0" />
<title>Notes</title>
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
</head>
@ -14,6 +14,8 @@
<script src="~/lib/jquery/dist/jquery.min.js"></script>
<script src="~/lib/signalr/dist/browser/signalr.min.js"></script>
<script src="~/js/site.js" asp-append-version="true"></script>
@RenderSection("scripts", false)
</body>
</html>