2023-04-06 19:01:16 +04:00
|
|
|
@{
|
|
|
|
ViewData["Title"] = "Enter";
|
|
|
|
}
|
2023-05-16 01:11:49 +04:00
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" href="~/css/entry.css" asp-append-version="true" />
|
|
|
|
</head>
|
2023-04-06 19:01:16 +04:00
|
|
|
<div class="text-center">
|
2023-05-16 01:11:49 +04:00
|
|
|
<h2
|
|
|
|
class="u-text u-text-custom-color-1 u-text-default u-text-1"
|
|
|
|
>
|
|
|
|
Вход
|
|
|
|
</h2>
|
2023-04-06 19:01:16 +04:00
|
|
|
</div>
|
|
|
|
<form method="post">
|
2023-05-16 01:11:49 +04:00
|
|
|
<div class="u-form-group u-label-top u-form-group-1">
|
|
|
|
<label class="u-label u-text-custom-color-1 u-label-1">Электронная почта</label>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
placeholder="Введите свой логин"
|
|
|
|
name="login"
|
|
|
|
class="u-input u-input-rectangle u-input-1"/>
|
|
|
|
</div>
|
|
|
|
<div class="u-form-group u-label-top u-form-group-2">
|
|
|
|
<label class="u-label u-text-custom-color-1 u-label-2">Пароль</label>
|
|
|
|
<input
|
|
|
|
type="password"
|
|
|
|
placeholder="Введите свой пароль"
|
|
|
|
name="password"
|
|
|
|
class="u-input u-input-rectangle u-input-2"/>
|
|
|
|
</div>
|
|
|
|
<div class="u-align-center u-form-group u-form-submit u-label-top">
|
|
|
|
<div class="col-8"></div>
|
|
|
|
<div class="col-4"><input type="submit" value="Войти" class="u-active-custom-color-6 u-border-none u-btn u-btn-submit u-button-style u-custom-color-1 u-hover-custom-color-2 u-btn-1"/></div>
|
|
|
|
</div>
|
2023-04-06 19:01:16 +04:00
|
|
|
</form>
|