Creation de la page liste.php
This commit is contained in:
parent
4f610b9138
commit
1848655848
BIN
WEB/liste_trajets/background.jpg
Normal file
BIN
WEB/liste_trajets/background.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 42 KiB |
36
WEB/liste_trajets/liste.css
Normal file
36
WEB/liste_trajets/liste.css
Normal file
@ -0,0 +1,36 @@
|
||||
body {
|
||||
color:black;
|
||||
background-color:white;
|
||||
background-image:url(background.jpg);
|
||||
background-repeat:no-repeat;
|
||||
background-size:104%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#container{
|
||||
margin : 5% 5% 5% 5%;
|
||||
background-color : white;
|
||||
border : 2px solid black;
|
||||
}
|
||||
|
||||
h1{
|
||||
text-align : center;
|
||||
font-size : 250%;
|
||||
}
|
||||
|
||||
h2{
|
||||
text-align : center;
|
||||
font-size : 150%;
|
||||
}
|
||||
|
||||
#bouton_retour{
|
||||
transform : rotate(45deg);
|
||||
}
|
||||
|
||||
.separation{
|
||||
margin-top : 5%;
|
||||
margin-left : 10%;
|
||||
height: 200px;
|
||||
width : 5px;
|
||||
background: black;
|
||||
}
|
33
WEB/liste_trajets/liste.php
Normal file
33
WEB/liste_trajets/liste.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
$source = "Toulouse";
|
||||
$dest = "Albi";
|
||||
|
||||
|
||||
?>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang = "fr">
|
||||
<head>
|
||||
<meta charset = "UTF-8">
|
||||
<link rel = "stylesheet" href = "liste.css">
|
||||
<title>Liste des trajets</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id = "container">
|
||||
|
||||
<div id ="entete">
|
||||
<a href = "LIEN TABLEAU DE BORD"><img id = "bouton_retour" src = "return.png" alt = "Bouton retour"></a>
|
||||
<h1 class = "float" id = "titre">Liste des trajets</h1>
|
||||
<br>
|
||||
<h2>Trajets recherchés : <?php echo $source ?> --> <?php echo $dest ?> </h2>
|
||||
</div>
|
||||
|
||||
<div id = "liste">
|
||||
<hr class="separation" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
BIN
WEB/liste_trajets/return.png
Normal file
BIN
WEB/liste_trajets/return.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
Loading…
Reference in New Issue
Block a user