<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html" xmlns="http://www.w3.org/1999/html">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Padle tournament system</title>
    <link href="style.css" rel="stylesheet">
</head>

<body>
    <div class="container">
        <div class="form">
            <div class="login_header">
                <img class="logoImg" src="../../_global/logo.svg" alt="">
                <a href="../index.html"><img src="src/x.svg" id="closelog"></a>
            </div>

            <div class="loginBox">
                <h2>Logowanie</h2>
                <input class="login_input" placeholder="Tutaj wpisz email lub nick" id="loginusername">

                <input class="password_input" placeholder="Tutaj wpisz hasło" id="loginpassword" type="password">
                <br>

                <!-- trzeba dać cssy buttonowi bo zmieniłem z form na button -->
                <button class="myButton" id="loginsubmit" onclick="login()">
                    ZALOGUJ
                </button>

            </div>

            <div class="login_footer">
                <span> Nie masz konta? <a href="rejestracja/index.html">Zajerestruj się</a></span>
            </div>
        </div>

    </div>
    <script type="text/javascript" src="app.js"></script>
</body>

</html>