You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
5.0 KiB
PHTML
144 lines
5.0 KiB
PHTML
6 years ago
|
<?php
|
||
|
|
||
|
require ('connectionBD.php');
|
||
|
$db = connexionBD();
|
||
|
init();
|
||
|
|
||
|
function printError(){
|
||
|
if(isset($_GET['error'])){
|
||
|
$erreur = getError($_GET['error']);
|
||
|
echo "<p class = 'error'>$erreur</p>";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function getError($code){
|
||
|
switch ($code){
|
||
|
case 1:
|
||
|
return "Cette adresse est déjà associée à un compte.";
|
||
|
case 2:
|
||
|
return "Ce login est déjà associé à un compte.";
|
||
|
case 3:
|
||
|
return "Erreur lors de la création du compte.";
|
||
|
case 4:
|
||
|
return "Erreur lors de la vérification de l'unicité de l'adresse mail.";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function isMailUnique($db, $mail){
|
||
|
$result = pg_query_params($db, "SELECT * FROM Utilisateur WHERE mail = $1;", array($mail));
|
||
|
if($result){
|
||
|
$row = pg_fetch_array($result);
|
||
|
return strcmp($row['mail'], $mail);
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
function isLoginUnique($db, $login){
|
||
|
$result = pg_query_params($db, "SELECT * FROM Utilisateur WHERE login = $1;", array($login));
|
||
|
if($result){
|
||
|
$row = pg_fetch_array($result);
|
||
|
return strcmp($row['login'], $login);
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
function creerUtilisateur($db, $mail, $password, $prenom, $nom, $login, $phone, $dateN){
|
||
|
$result = pg_query_params($db, "INSERT INTO Utilisateur VALUES ($1, $2, $3, $4, $5, $6, to_date($7, 'YYYY/MM/DD'), false);", array($mail, $password, $prenom, $nom, $login, $phone, $dateN));
|
||
|
return $result;
|
||
|
}
|
||
|
|
||
|
|
||
|
function init(){
|
||
|
session_start();
|
||
|
|
||
|
if(!isset($_SESSION['mail'])){
|
||
|
if(isset($_POST['mail_field'])){
|
||
|
|
||
|
$login = htmlentities(pg_escape_string ($_POST['login_field']));
|
||
|
$password = htmlentities(pg_escape_string ($_POST['password']));
|
||
|
$prenom = htmlentities(pg_escape_string ($_POST['prenom']));
|
||
|
$nom = htmlentities(pg_escape_string ($_POST['nom']));
|
||
|
$dateN = htmlentities(pg_escape_string ($_POST['dateN']));
|
||
|
$mail = htmlentities(pg_escape_string ($_POST['mail_field']));
|
||
|
$phone = htmlentities(pg_escape_string ($_POST['phone']));
|
||
|
|
||
|
if(!isMailUnique($db, $mail)){
|
||
|
header('Location: inscription.php?error=1');
|
||
|
}
|
||
|
elseif(!isLoginUnique($db, $mail)){
|
||
|
header('Location: inscription.php?error=2');
|
||
|
}
|
||
|
else{
|
||
|
$result = creerUtilisateur($db, $mail, $password, $prenom, $nom, $login, $phone, $dateN);
|
||
|
if($result){
|
||
|
header('Location: index.php');
|
||
|
}
|
||
|
else{
|
||
|
header('Location: inscription.php?error=3');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
else{
|
||
|
header('Location: tableauBord/tableauBord.php');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
|
||
|
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="fr">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<link rel="stylesheet" href="index_inscription.css">
|
||
|
<title>Inscription</title>
|
||
|
<script src="inscription.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="formulaire">
|
||
|
<h1>Inscription</h1>
|
||
|
<form method="post" action="inscription.php">
|
||
|
<div class="line">
|
||
|
<label for="mail_field">Adresse mail : </label>
|
||
|
<input id="mail_field" class="form" name="mail_field" type="email" maxlength="100" required>
|
||
|
</div>
|
||
|
<div class="line">
|
||
|
<label for="login_field">Login : </label>
|
||
|
<input id="login_field" class="form" name="login_field" type="text" maxlength="50" required>
|
||
|
</div>
|
||
|
<div class="line">
|
||
|
<label for="password">Mot de passe : </label>
|
||
|
<input class="form" id="password" name="password" type="password" maxlength="50" required>
|
||
|
</div>
|
||
|
<div class="line">
|
||
|
<label for="confirmation">Confirmation : </label>
|
||
|
<input class="form" id="confirmation" name="confirmation" type="password" maxlength="16">
|
||
|
</div>
|
||
|
<div class="line">
|
||
|
<label for="prenom_field">Prénom : </label>
|
||
|
<input id="prenom_field" class="form" name="prenom" type="text" maxlength="50" required>
|
||
|
</div>
|
||
|
<div class="line">
|
||
|
<label for="nom_field">Nom : </label>
|
||
|
<input id="nom_field" class="form" name="nom" type="text" maxlength="50" required>
|
||
|
</div>
|
||
|
<div class="line">
|
||
|
<label for="dateN_field">Date de naissance : </label>
|
||
|
<input id="dateN_field" class="form" name="dateN" type="date" required>
|
||
|
</div>
|
||
|
<div class="line">
|
||
|
<label for="phone_field">Numéro de téléphone : </label>
|
||
|
<input id="phone_field" class="form" name="phone" type="tel" pattern="[0-9]{10}" maxlength="10" required>
|
||
|
</div>
|
||
|
<?php
|
||
|
printError();
|
||
|
?>
|
||
|
<input id="submit" class="button" type="submit" value="S'inscrire">
|
||
|
</form>
|
||
|
<p id="enregistrer">Si vous avez déjà un compte <a href="index.php" title="S'identifier">cliquez ici</a>.</p>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|