first commit
This commit is contained in:
71
views/register.php
Normal file
71
views/register.php
Normal file
@@ -0,0 +1,71 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>DREAM SELLER | Inscription</title>
|
||||
<link rel="stylesheet" href="../css/register.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<a href="index.php"><button>ACCUEIL</button></a>
|
||||
</header>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>INSCRIPTION</h2>
|
||||
|
||||
<form method="post">
|
||||
<div class="info">
|
||||
<div class="box">
|
||||
<input type="text" name="nom" id="nom" placeholder="Nom" required>
|
||||
</div>
|
||||
|
||||
<div class="box">
|
||||
<input type="text" name="prenom" id="prenom" placeholder="Prénom" required>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- -->
|
||||
<div class="box">
|
||||
<input type="number" name="age" id="age" placeholder="Âge" required>
|
||||
</div>
|
||||
|
||||
<div class="box">
|
||||
<input type="text" name="pseudo" id="pseudo" placeholder="Nom d'utilisateur" required>
|
||||
</div>
|
||||
|
||||
<div class="box">
|
||||
<input type="email" name="email" id="email" placeholder="Adresse Mail" required>
|
||||
</div>
|
||||
|
||||
<div class="box">
|
||||
<input type="password" name="mdp" id="mdp" placeholder="Mot de passe" required>
|
||||
</div>
|
||||
|
||||
<div class="box">
|
||||
<input type="password" name="cmdp" id="cmdp" placeholder="Confirmer votre mot de passe" required>
|
||||
</div>
|
||||
|
||||
|
||||
<input class="but1" type="submit" name="formsend" id="formsend">
|
||||
|
||||
<!-- -->
|
||||
|
||||
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
|
||||
<?php
|
||||
include '../controler/actionRegister.php';
|
||||
|
||||
?>
|
||||
|
||||
</section>
|
||||
|
||||
</body>
|
Reference in New Issue
Block a user