Internet_Programming_PIbd-2.../SignUp.html

41 lines
2.7 KiB
HTML
Raw Permalink Normal View History

2023-11-12 13:22:57 +04:00
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="styles/styleSigh.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jost:wght@300&family=Source+Serif+4:opsz,wght@8..60,600;8..60,700&display=swap" rel="stylesheet">
<title>Книжный подвальчик</title>
</head>
<body>
<div class="background-image">
<div class="container">
<a class="nav-item" href="index.html">
<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="Vector" d="M5 7.5H20C22.6522 7.5 25.1957 8.55357 27.0711 10.4289C28.9464 12.3043 30 14.8478 30 17.5V52.5C30 50.5109 29.2098 48.6032 27.8033 47.1967C26.3968 45.7902 24.4891 45 22.5 45H5V7.5Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_2" d="M55 7.5H40C37.3478 7.5 34.8043 8.55357 32.9289 10.4289C31.0536 12.3043 30 14.8478 30 17.5V52.5C30 50.5109 30.7902 48.6032 32.1967 47.1967C33.6032 45.7902 35.5109 45 37.5 45H55V7.5Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
<div class="sign-up-container">
<h2 class="custom-h">Регистрация</h2>
<form id="registrationForm" action="">
<div class="row justify-content-center">
<input type="text" class="form-control" id="username" placeholder="логин">
<input type="text" class="form-control" id="email" placeholder="email">
<input type="password" class="form-control" id="password" placeholder="пароль">
<button type="submit" class="btn btn-custom" id="submitButton">ЗАРЕГИСТРИРОВАТЬСЯ</button>
<p class="custom-text">Уже есть аккаунт? <a href="SignIn.html" class="custom-a">Войти</a></p>
</div>
</form>
</div>
</div>
</div>
<footer class="footer mt-auto d-flex flex-shrink-0 justify-content-center align-items-center text-white">
Федоренко Галина, ПИбд-22
</footer>
<script src="scripts/index.js"></script>
</body>
</html>