This commit is contained in:
Lev 2026-04-19 17:46:56 +03:00
parent 11a84f4926
commit 4c4d325245
19 changed files with 226 additions and 279 deletions

View file

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Регистрация - SpectralVPN</title>
<link rel="stylesheet" href="Styles/register.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<script src="JS/register.js"></script>
<script src="https://cdn.jsdelivr.net/npm/js-cookie@3.0.5/dist/js.cookie.min.js"></script>
</head>
<body>
<form id="registerForm" novalidate>
<h1>Регистрация</h1>
<label for="email">Электронная почта</label>
<input type="email" id="email" class="input" placeholder="example@domain.com" required autocomplete="email">
<div class="error" id="emailError"></div>
<label for="password">Пароль</label>
<input type="password" id="password" class="input" placeholder="Введите пароль">
<div class="error" id="passwordError"></div>
<label for="password_reply">Повторите пароль</label>
<input type="password" id="password_reply" class="input" placeholder="Повторите пароль">
<div class="error" id="passwordReplyError"></div>
<label for="promo_code">Промокод</label>
<input type="text" id="promo_code" class="input" placeholder="Введите прокод">
<div class="error" id="promoError"></div>
<div class="checkbox-container">
<input type="checkbox" id="terms" class="checkbox" required>
<label for="terms">Я прочитал и согласен с <a href="offer.html" target="_blank">пользовательским соглашением</a> и <a href="privacy.html" target="_blank">политикой конфиденциальности</a>.</label>
</div>
<div class="error" id="termsError"></div>
<button type="submit">Зарегистрироваться</button>
<p>Уже есть аккаунт? <a href="control-panel.html">Войти</a></p>
</form>
</body>
</html>