-
Notifications
You must be signed in to change notification settings - Fork 0
/
connection.php
41 lines (37 loc) · 891 Bytes
/
connection.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
<?php
session_start();
/**
* Created by PhpStorm.
* User: axelg
* Date: 07/01/2019
* Time: 16:08
*/
?>
<!DOCTYPE HTML>
<html>
<?php
include 'template/head.php';
?>
<body>
<?php
include 'template/navbar.php';
?>
<?php
include 'template/header.php';
?>
<div class="w-50 mx-auto p-2 rounded bg-custom-light mt-3">
<form action="javascript:connect()" id="connectionForm">
<div class="form-group">
<label for="email">Email</label>
<input type="text" name="email" id="email" class="form-control" required/>
<label for="password">Mot de passe</label>
<input type="password" name="password" id="password" class="form-control" required/>
<button type="submit" class="btn btn-outline-primary d-block mx-auto mt-2">Valider</button>
</div>
</form>
</div>
<?php
include 'template/footer.php';
?>
</body>
</html>