-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
36 lines (33 loc) · 1.47 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<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>Page inscription pseudo</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<ul class="menu">
<a href="#">Recommencer le QCM </a>
<a href="connextion.php">Connection</a>
<a href="index.php">Inscriptions</a>
</ul>
<section class="pseudo">
<form action="traitemantindex.php" method="POST">
<p class="error"> Bonjour vous voulez esseyer le QCM inscrivez vous? </p>
<label > Entrez votre Prenom </label>
<input type="text" name="name" placeholder="Ex: Hugo" required>
<label > Entrez votre mot de passe </label>
<input type="password" name="mdp" placeholder="Entrez mot de passe" required>
<label > Confirmez votre mot de passe </label>
<input type="password" name="mdp2" placeholder="Entrez a nouveau votre mot de passe" required>
<label > Entrez votre Email </label>
<input type="text" name="mail" placeholder="Ex: [email protected]" required>
<button class="style_btn" name="button" action="connextion.php">Validez</button><br><br>
<p class="box-register">Déjà inscrit?
<a href="connextion.php">Connectez-vous ici</a></p>
</form>
</section>
</body>
</html>