-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
122 lines (81 loc) · 3.4 KB
/
index.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Archivo+Narrow" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<!---Select Bootstrap --->
<!-- Latest compiled and minified CSS -->
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.11.2/css/bootstrap-select.min.css">-->
<!-- Latest compiled and minified JavaScript -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.11.2/js/bootstrap-select.min.js"></script>-->
<title>Document</title>
</head>
<body>
<div class="container">
<h1>Contact AllSafe</h1>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">AllSafe</a>
</div>
<!-- <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-9">-->
<ul class="nav navbar-nav">
<li><a href="/">Recherche</a></li>
</ul>
</div>
</nav>
<div id="regle" class="jumbotron">
<h1>Règles de confidentialité</h1>
<p>Ce website est exclusivement réservé aux employés de la société.</p>
<p> Merci de respecter la vie privé des m. Toutes propagations ou abus de ces informations occasionera des poursuites judiciaires</p>
<p><a class="btn btn-primary btn-lg" href="#" id="accept" role="button">J'accepte les termes >></a></p>
</div>
<div id="search">
<div class="page-header">
<h1>Recherche de d'informations sur le personnel :</h1>
</div>
<p>Choisissez le département :</p>
<div class="col-lg-6">
<div class="input-group my-group">
<div class="form-group">
<select id="categorie" class="selectpicker form-control">
</select>
</div>
<span class="input-group-btn">
<button class="btn btn-primary" id="submit">Rechercher !</button>
</span>
</div>
</div>
</div>
<br/>
<br/>
<div id="result">
<p>Liste des personnes pour le département </p>
<div class="col-12 col-sm-12 col-lg-12">
<div class="table-responsive">
<table class="table table-responsive">
<thead>
<tr>
<th>Nom</th>
<th>Prénom</th>
<th>Mail</th>
<th>Téléphone</th>
</tr>
</thead>
<tbody>
</tbody>
</table></div></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>