neutral-old/public/templates/panel.html

70 lines
964 B
HTML
Raw Permalink Normal View History

2023-03-27 19:55:47 +00:00
<div class="home">
2023-04-28 20:36:23 +00:00
<h1>Administration <button onclick="getPage('panel.html')">RELOAD</button></h1>
2023-03-27 19:55:47 +00:00
</br>
<div class="homepanel">
<div class="row w-100">
<div class="hbox col-lg">
2023-04-28 20:36:23 +00:00
<h1><i class="fa fa-gear"></i> Actions et informations</h1>
<hr>
<button>Redémarrer</button>
<button>Update</button>
</div>
<div class="hbox col-lg">
<h1><i class="fa fa-file"></i> Chemin d'accès et paramètres</h1>
2023-03-27 19:55:47 +00:00
2023-04-28 20:36:23 +00:00
</div>
2023-03-27 19:55:47 +00:00
</div>
</div>
</div>
<!-- Style-->
<style>
.home {
}
.hbox h1 {
font-size: large;
}
table {
color: white;
}
.hbox {
margin: 1%;
padding: 1%;
background-color: rgb(80, 80, 80);
border-radius: 1vw;
box-shadow: 5px 5px 5px rgba(80, 80, 80, 0.477) ;
}
</style>