<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
    <link rel="stylesheet" href="style.css">
    <link rel="icon" href="https://cdn-icons-png.flaticon.com/128/5968/5968292.png" type="image/x-icon">
</head>
<body>
    <div class="container" id="container">
        <div class="form-container sign-up">
            <form action="register.php" method="post">
                <h1>Регистрация</h1>
                <input type="text" placeholder="Name" name="login">
                <input type="password" placeholder="Password" name="pass">
                <input type="email" placeholder="Email" name="email">
                <button type="submit">Зарегестрироваться</button>
            </form>
        </div>
        <div class="form-container sign-in">
            <form action="login.php" method="post">
                <h1>Вход</h1>
                <input type="text" placeholder="Name" name="login">
                <input type="password" placeholder="Password" name="pass">

                <button type="submit">Войти</button>
            </form>
        </div>
        <div class="toggle-container">
            <div class="toggle">
                <div class="toggle-panel toggle-left">
                    <h1>Впервые здесь?</h1>
                    <button class="hidden" id="login">Войти</button>
                </div>
                <div class="toggle-panel toggle-right">
                    <h1>Добро пожаловать!</h1>
                    <button class="hidden" id="register">Зарегестрироваться</button>
                </div>
            </div>
        </div>
    </div>
    <script src="script.js"></script>
</body>
</html>