configs nginx

This commit is contained in:
Lev 2025-12-09 09:11:04 +03:00
parent f20f9528aa
commit 351f7e919b
8 changed files with 40 additions and 14 deletions

View file

@ -1,32 +0,0 @@
<!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>