Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
70 righe
2.8 KiB
70 righe
2.8 KiB
<!doctype html> |
|
<? |
|
include 'lib/api.php'; |
|
$isOpenFaq = Utils::PeriodoFaq(); |
|
if (!$isOpenFaq) { |
|
Utils::RedirectTo(BASE_HTTP . "index.php"); |
|
} |
|
?> |
|
<html lang="en"> |
|
<? include_once ROOT . 'layout/head.php'; ?> |
|
<body> |
|
<style> |
|
tr.group, |
|
tr.group:hover { |
|
background-color: #ddd !important; |
|
} |
|
</style> |
|
<? |
|
include_once ROOT . 'layout/header_home.php'; |
|
?> |
|
<main role="main" > |
|
<header class="masthead masthead-page mb-5"> |
|
<div class="container"> |
|
<div class="row align-items-center"> |
|
<div class="col-lg-8 py-5"> |
|
<h1 class="mb-2"><?= APP_NAME ?></h1> |
|
<h2 class="m-0">F.A.Q.</h2> |
|
<h4>Consulta le domande più frequenti.</h4> |
|
</div> |
|
<div class="col-lg-4"> |
|
<h1 style="font-size:10em"><i class="fas fa-tasks"></i></h1> |
|
</div> |
|
</div> |
|
</div> |
|
<? |
|
include_once ROOT . 'layout/header_svg.php'; |
|
?> |
|
</header> |
|
<div class="container-fluid"> |
|
<div class="row"> |
|
<div class="col-lg-12"> |
|
<div class="card"> |
|
<div class="card-header bg-primary text-white"> |
|
<i class="fas fa-school"></i> |
|
F.A.Q. |
|
</div> |
|
<div class="card-body"> |
|
<table id="faqAvviso" class="table table-striped table-bordered" style="width:100%"> |
|
<thead> |
|
<tr> |
|
<th>#</th> |
|
<th>Data</th> |
|
<th>Categoria</th> |
|
<th>Domanda</th> |
|
<th>Risposta</th> |
|
</tr> |
|
</thead> |
|
</table> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
<br> |
|
<? include_once ROOT . 'layout/footer.php'; ?> |
|
<script src="js/faq.js" type="text/javascript"></script> |
|
</main> |
|
</body> |
|
|
|
</html>
|
|
|