-
Notifications
You must be signed in to change notification settings - Fork 0
/
commander.php
61 lines (50 loc) · 1.58 KB
/
commander.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Affable Beans</title>
</head><!--/head-->
<body>
<?php require_once("header.php")
?>
<section id="cart_items">
<div class="container">
<div class="breadcrumbs">
<ol class="breadcrumb">
<li><a href="index.php">Home</a></li>
<li class="active">Commander</li>
</ol>
</div><!--/breadcrums-->
<div class="step-one">
<h2 class="heading">Valider ma commande / Mes coordonnées</h2>
</div>
<section id="form"><!--form-->
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="signup-form"><!--sign up form-->
<h2>Créer un nouveau compte</h2>
<form action="commander_action.php" method="POST">
<input type="text" placeholder="Votre nom & prénom" name='nom' id='nom'/>
<input type="email" placeholder="Email Address" name='email' id='email'/>
<input type="text" placeholder="Adresse" name='adress' id='adress'/>
<?php if( !empty($id) ) { ?>
<input type="hidden" name="id" value="<?php echo $id; ?>" />
<?php $id_prod=$_GET['id'];?>
<input type="hidden" name="id_prod" value="<?php echo $id_prod; ?>" />
<?php } ?>
<button type="submit" class="btn btn-default">
Paiement
</button>
</form>
<p></p>
</div><!--/sign up form-->
</div>
</div>
</div>
</section><!--/form-->
</div>
</section> <!--/#cart_items-->
<?php require_once("footer.php") ?>
</body>
</html>