Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
  • bdabf532b1b97224fb9430bb990017d0dc2878b1
  • main default protected
  • revert-a98119d8
3 results

login.html

Blame
  • login.html 665 B
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Login</title>
        <link rel="stylesheet" href="styles/login.css">
    </head>
    <body>
        <div class="login-container">
            <h2>Login</h2>
            <form method="POST" action="/login">
                <input type="email" placeholder="Email" name="email" required />
                <input type="password" placeholder="Password" name="password" required />
                <button type="submit">Login</button>
                <p>don't have account <a href="register.html">Register</a></p>
            </form>
        </div>
    </body>
    </html>