<!
DOCTYPE html>
<html lang=”fr”>
<head>
<meta charset=”UTF-8” />
<meta name=”viewport” content=”width=device-width, initial-scale=1.0” />
<title>Inscription</title>
<link rel=”stylesheet” href=”style.css” />
</head>
<body>
<div class=”signup-container”>
<form class=”signup-form” onsubmit=”return validateForm()” enctype=”multipart/form-
data”>
<h2>Créer un compte</h2>
<div class=”form-group”>
<label for=”profilePhoto”>Photo de profil</label>
<input type=”file” id=”profilePhoto” accept=”image/*” required />
</div>
<div class=”form-group”>
<label for=”coverPhoto”>Photo de couverture</label>
<input type=”file” id=”coverPhoto” accept=”image/*” required />
</div>
<div class=”form-group”>
<label for=”prenom”>Prénom</label>
<input type=”text” id=”prenom” required />
</div>
<div class=”form-group”>
<label for=”nom”>Nom</label>
<input type=”text” id=”nom” required />
</div>
<div class=”form-group”>
<label for=”email”>Adresse email</label>
<input type=”email” id=”email” required />
</div>
<div class=”form-group”>
<label for=”password”>Mot de passe</label>
<input type=”password” id=”password” required minlength=”6” />
</div>
<div class=”form-group”>
<label for=”confirmPassword”>Confirmer le mot de passe</label>
<input type=”password” id=”confirmPassword” required minlength=”6” />
</div>
<button type=”submit”>S’inscrire</button>
</form>
</div>
<script src=”script.js”></script>
</body>
</html>