InternetProgramming/login.html

35 lines
1.3 KiB
HTML
Raw Normal View History

2023-10-29 15:43:48 +04:00
<!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">
2023-11-09 19:01:29 +04:00
Войти в аккаунт
2023-10-29 15:43:48 +04:00
</div>
<div class="register-table-column">
<div class="register-table-input2">
2023-11-09 19:01:29 +04:00
<input class="form-control me-2 orange" type="email" placeholder="Почта" aria-label="Mail">
2023-10-29 15:43:48 +04:00
</div>
<div class="register-table-input3">
2023-11-09 19:01:29 +04:00
<input class="form-control me-2 orange" type="password" placeholder="Пароль" aria-label="Mail">
2023-10-29 15:43:48 +04:00
</div>
</div>
<div class="register-table-button column">
2023-11-09 19:01:29 +04:00
<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>
2023-10-29 15:43:48 +04:00
</div>
</div>
</body>
</html>