-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
78 lines (69 loc) · 2.64 KB
/
Copy pathhome.php
File metadata and controls
78 lines (69 loc) · 2.64 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
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Airline Manager</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand navbar-dark bg-dark nav-justified" id="navbartop">
<a class="navbar-brand">
<img src="./France Alliance icon.jpg" width="30" height="30" class="d-inline-block align-top" alt=""> Airline Manager for RH
</a>
<ul class="navbar-nav d-inline-flex" aria-expanded="false">
<li class="nav-items dropdown d-flex">
<button class="btn" id="navbarAjouter">Ajouter</button>
<button class="btn" id="navbarListe">Liste</button>
<button class="btn" id="navbarStat">Statistique</button>
</li>
</ul>
</nav>
<div>
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="#ajoueur">Joueur</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#arole">Role</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#aalliance">Alliance</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane container active" id="ajoueur"></div>
<div class="tab-pane container fade" id="arole"></div>
<div class="tab-pane container fade" id="aalliance"></div>
</div>
</div>
<script src="main.js"></script>
<script>
$.ajax({
type: "GET",
url: "./html/Ajouter/Joueur.php",
success: function(response) {
$('#ajoueur').html(response);
}
});
$.ajax({
type: "GET",
url: "./html/Ajouter/Role.php",
success: function(response) {
$('#arole').html(response);
}
});
$.ajax({
type: "GET",
url: "./html/Ajouter/Alliance.php",
success: function(response) {
$('#aalliance').html(response);
}
});
</script>
</body>
</html>