SpectralVPN/Frontend/register.html
2025-12-09 09:11:04 +03:00

32 lines
1.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>
</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>
<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>