14 lines
606 B
Plaintext
14 lines
606 B
Plaintext
|
@{
|
||
|
ViewData["Title"] = "Логин";
|
||
|
}
|
||
|
|
||
|
<div class="text-center">
|
||
|
<h2 class="display-4">Вход в приложение</h2>
|
||
|
</div>
|
||
|
|
||
|
<form class="form-signin text-center" method="post">
|
||
|
<h1 class="h3 mb-3 font-weight-normal">Логин</h1>
|
||
|
<input type="email" id="login" name="login" class="form-control" placeholder="Почта" required autofocus>
|
||
|
<input type="password" id="password" name="password" class="form-control" placeholder="Пароль" required>
|
||
|
<button class="btn btn-lg btn-primary btn-block" type="submit" asp-controller="Home" asp-action="Login">Войти</button>
|
||
|
</form>
|