Merge branch 'master' into dev/multiple-notes
This commit is contained in:
18
Views/Login/Login.cshtml
Normal file
18
Views/Login/Login.cshtml
Normal 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>
|
||||
}
|
@ -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>
|
||||
|
Reference in New Issue
Block a user