bcom/register.php

28 lines
908 B
PHP

<?php session_start(); ?>
<!DOCTYPE html>
<html>
<head>
<?php include 'includes/meta.php'; ?>
</head>
<body>
<?php include 'includes/header.php'; ?>
<form id="registerForm" method="post" action="registering.php">
<label for="pseudo">Pseudo :</label>
<input type="text" name="pseudo" id="pseudo" placeholder="Votre pseudo" />
<br/>
<label for="mdp">Mot de passe :</label>
<input type="password" name="mdp" id="mdp" placeholder="Votre mot de passe" />
<br/>
<label for="mdp2">Mot de passe (bis) :</label>
<input type="password" name="mdp2" id="mdp2" placeholder="Votre mot de passe" />
<br/>
<input type="Submit" value="S'inscrire">
</form>
<?php include 'includes/footer.php' ?>
</body>
</html>