2023-05-20 06:49:33 +04:00
|
|
|
@{
|
|
|
|
ViewData["Title"] = "Enter";
|
|
|
|
}
|
|
|
|
|
|
|
|
<div class="text-center">
|
|
|
|
<h2 class="display-4">Вход в приложение</h2>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<form method ="post">
|
|
|
|
<div class="mb-3">
|
2023-06-19 13:29:55 +04:00
|
|
|
<label for="InputEmail1" class="form-label" style="font-size: 30px;">Email address</label>
|
2023-05-20 06:49:33 +04:00
|
|
|
<input type="email" name="login" class="form-control" id="InputEmail1" aria-describedby="emailHelp">
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
2023-06-19 13:29:55 +04:00
|
|
|
<label for="InputPassword1" class="form-label" style="font-size: 30px";>Password</label>
|
2023-05-20 06:49:33 +04:00
|
|
|
<input type="password" name="password" class="form-control" id="InputPassword1">
|
|
|
|
</div>
|
|
|
|
<div class="mb-3" style="width: 100%">
|
2023-06-19 13:29:55 +04:00
|
|
|
<button type="submit" style="background-color:black; width: 100%; font-size: 30px;" class="btn btn-primary">Войти</button>
|
2023-05-20 06:49:33 +04:00
|
|
|
</div>
|
|
|
|
</form>
|