123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta charset="UTF-8">
- <title>Bienvenu à microfolie</title>
- <link rel="stylesheet" type="text/css" href="css/style.css">
- <link rel="stylesheet" type="text/css" href="css/settings.css">
- <link rel="stylesheet" type="text/css" href="css/bootstrap/css/bootstrap.css">
- <link rel="stylesheet" href="css/style1.css" type="text/css" />
- </head>
- <body>
- <div id="principal">
- <div class="header">
- <div class="navbar">
- <ul>
- <li><a href="index.html">Accueil</a></li>
- <li><a href="abonnes.html">nos Abonnés</a></li>
-
- </ul>
- </div><!-- end navbar -->
- </div><!-- end of header -->
- <div class="main">
-
- <div class="content">
-
- <main>
- <div class="container">
- <h4 class="section-title">Nos espace:</h4>
- <div>
- <button type="button" class="btn btn-danger btn-lg espace" onclick="lauchRequest('Accueil');">Accueil</button>
- </div>
- </div>
- </main>
- </div><!-- end of main div -->
- <div class="clear"></div>
- <div class="footer"></div><!-- end footer div -->
- </div><!-- end of pricipal div -->
- <script src="js/Chart.min.js" type="text/javascript"></script>
- <script src="js/index.js" type="text/javascript"></script>
- <script src="js/chart.js" type="text/javascript"></script>
- <script src="js/bootstrap/js/bootstrap.js" type="text/javascript"></script>
-
- <script>
- function lauchRequest(espace){
- console.log(espace);
- const xmlhttp = new XMLHttpRequest();
- // Get JSON File
- xmlhttp.onreadystatechange = function() {
- if (this.status == 200) {
- console.log(this.responseText);
- }
- };
- xmlhttp.open("GET", "http://localhost:8080/lens/configure?espace="+espace, true);
- xmlhttp.send();
- }
- </script>
- </body>
- </html>
|