Skip to content
Snippets Groups Projects
inscription.html 1.01 KiB
Newer Older
Bastien's avatar
Bastien committed
<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel ="stylesheet" href="css/style.css">
    <title>S'inscrire</title>
</head>
<body>
    <h1>Créer mon compte</h1>
    <form>
        <label for="login">Nom d'utilisateur :</label>
        <input type="text" placeholder="Nom d'utilisateur" name="login">
        <br>

        <label for="firstname">Prénom : </label>
        <input type="text" placeholder="Prénom" name="firstname">
        <br>

        <label for="lastname">Nom : </label>
        <input type="text" placeholder="Nom" name="lastname">
        <br>

        <label for="birthdate">Date de naissance</label>
        <input type="date" placeholder="a" name="login">
        <br>

        <label for="password">Mot de passe</label>
        <input type="password" placeholder="Mot de passe" name="password">
        <br>

        <button type="submit" name="submit">S'inscrire</button>
    </form>
    
</body>
</html>