-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
45 lines (36 loc) · 1.43 KB
/
Copy pathindex.php
File metadata and controls
45 lines (36 loc) · 1.43 KB
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
<?php
include_once "signUpAndLoginBorders.php";
if (isset($_SESSION['id'])) {
header("Location: home.php");
exit();
}
?>
<link href="bootstrap/css/signUp.css" rel="stylesheet">
<div class="signUpForm">
<form action="signup.php" method="POST">
<div class="form-group">
<input type="text" name="firstName" placeholder="First Name" id="firstName" class="form-control">
</div>
<div class="form-group">
<input type="text" name="lastName" placeholder="Last Name" id="lastName" class="form-control">
</div>
<div class="form-group">
<input type="text" name="email" placeholder="Mail" id="mail" class="form-control">
</div>
<div class="form-group">
<input type="text" name="pseudo" placeholder="Pseudo" id="pseudo" class="form-control">
</div>
<div class="form-group">
<input type="password" name="pwd" placeholder="Password" id="pwd" class="form-control">
</div>
<div class="form-group">
<input type="password" name="pwd2" placeholder="Password Verif" id="pwd2" class="form-control">
</div>
<div class="form-group">
<button type="submit" name="submit" class="btn btn-success">Sign Up</button>
</div>
</form>
</div>
<?php
include_once "footer.php";
?>