-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinscription.php
62 lines (47 loc) · 1.87 KB
/
inscription.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
62
<?php include 'includes/header.php';
include 'includes/navbar.php'; ?>
<link href="css/projet.css" rel="stylesheet">
</head>
<div class="container">
<div class="jumbotron">
<h1>Our fun project!</h1>
<p class="lead">
<form method="post" action="includes/act_inscription.php">
<div class="col-md-6">
<div class="form-group">
<label for="email">Enter email</label>
<input type="email" class="form-control" name="email" id ="email" placeholder="Enter email">
</div>
<div class="form-group">
<label for="pseudo">Pseudo</label>
<input type="text" class="form-control" name="pseudo" id="pseudo" placeholder="Entrez votre pseudo">
</div>
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" name="name" id="name" placeholder="Enter your name">
</div>
</div>
<div class="col-md-4">
</div>
<div class="col-md-6">
<div class="form-group">
<label for="lastname">Lastname</label>
<input type="text" class="form-control" name="lastname" id="lastname" placeholder="Enter your lastname">
</div>
<div class="form-group">
<label for="pass">Password</label>
<input type="password" class="form-control" name="password" id="password" placeholder="Enter your password">
</div>
<div class="form-group">
<label for="pass">Confirm Password</label>
<input type="password" class="form-control" name="confirmPassword" id="confirmPassword" placeholder="Password">
</div>
</div>
<div class="col-md-1">
<input type="submit" class="btn btn-success"></input>
</div>
</form></p>
</div><!-- Fin Jumbotron -->
</div> <!-- /container -->
</body>
</html>