35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Восстановление аккаунта</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" />
|
|
<link href="node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
|
rel="stylesheet" />
|
|
<link rel="stylesheet" href="css/style.css">
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container-fluid w-2 register-table text-center col">
|
|
<div class="register-table-text">
|
|
Войти в аккаунт
|
|
</div>
|
|
<div class="register-table-column">
|
|
<div class="register-table-input2">
|
|
<input class="form-control me-2 orange" type="email" placeholder="Почта" aria-label="Mail">
|
|
</div>
|
|
<div class="register-table-input3">
|
|
<input class="form-control me-2 orange" type="password" placeholder="Пароль" aria-label="Mail">
|
|
</div>
|
|
</div>
|
|
<div class="register-table-button column">
|
|
<button class="reg_button" onclick="document.location='/repair.html'">Забыл пароль</button>
|
|
<button class="reg_button" onclick="document.location='/registr.html'">Регистрация</button>
|
|
<button class="reg_button" onclick="document.location='/index.html'">Войти</button>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|