Untitled

 avatar
unknown
plain_text
a year ago
827 B
5
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Fenêtre de Connexion</title>
    <link rel="stylesheet" href="login.css">
</head>
<body>
    <div>
        <h1>Connexion</h1>
        
        <form action="http://localhost/test web/login.php" method="post">
            <label for="email">E-mail:</label>
            <input type="email" id="email" name="email" required>

            <label for="password">Mot de passe:</label>
            <input type="password" id="password" name="password" required>

            <button type="submit">Se connecter</button>
        </form>

        <p>Vous n'avez pas de compte? <a href="inscription.html">Inscrivez-vous ici</a></p>
    </div>
</body>
</html>
Editor is loading...
Leave a Comment