-
Notifications
You must be signed in to change notification settings - Fork 1
/
CreationCompte.php
42 lines (30 loc) · 1.42 KB
/
CreationCompte.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
37
38
39
40
41
42
<?php
include "header/header.php";
require "connection.php" ;
$sql=$connection ->prepare('INSERT INTO utilisateur VALUES(:mail_login, :motDePasse, :nom, :prenom, :adresse,:tel) ');
$sql->bindParam(':mail_login', $_REQUEST['email']);
$sql->bindParam(':motDePasse', SHA1($motDePasse));
$sql->bindParam(':nom', $_REQUEST['nom']);
$sql->bindParam(':prenom', $_REQUEST['prenom']);
$sql->bindParam(':adresse', $_REQUEST['adresse']);
$sql->bindParam(':tel', $_REQUEST['tel']);
$sql->execute();
?>
<html>
<body>
<div class="container-fluid" style = "padding-top: 230px;">
<div class="row">
<div class="col-2"></div>
<div class="col-8 rounded row" style = "text-align : center; background-color : #C4C4C4; padding-top : 20px; padding-bottom : 20px;">
<div class="col-1"></div>
<div class="col-10" >
<p>Vos informations ont bien été ajoutées à notre base de données, vous êtes maintenant inscris !</p>
<button class="rounded-pill" style = "background-color: #006430; ">
<a href="Authentification.php" style = "color : white;font-family: lobster;" >Je me connecte avec mon compte</a>
</button>
</div>
</div>
<div class="col-2"></div>
</div>
</div>
<?php include "footer.html";?>