-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ee771d
commit f881d3d
Showing
2 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<html> | ||
<head> | ||
<?php | ||
include "core/_header.php"; | ||
session_start(); | ||
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | ||
// error_reporting per togliere il notice quando non trova isLogged | ||
//error_reporting(0); | ||
include "core/dbConnection.php"; | ||
include "core/getData.php"; | ||
include "core/functions.php"; | ||
|
||
if ($error_message) { | ||
echo " | ||
<script> | ||
flatAlert('Accesso', 'Impossibile connettersi al database', 'error', 'index.php'); | ||
</script>"; | ||
} | ||
?> | ||
</head> | ||
<body> | ||
<div class="mdl-layout mdl-js-layout"> | ||
<main class="mdl-layout__content"> | ||
<div class="page-content"> | ||
<div class="mdl-grid"> | ||
<section class="mdl-cell mdl-cell--middle mdl-cell--3-col mdl-cell--hide-phone mdl-cell--hide-tablet"> | ||
<div style="padding:5px"> | ||
<h1> | ||
<mark style="background-color:white;border:none;border-radius:10px;padding:5px;"> | ||
<span class="style-gradient-text">Rapporti</span> | ||
</mark> | ||
</h1> | ||
<h1> | ||
<mark style="background-color:white;border:none;border-radius:10px;padding:5px;"> | ||
<span class="style-gradient-text">d'intervento</span> | ||
</mark> | ||
</h1> | ||
<h3 class="style-gradient-text"> | ||
<mark style="background-color:white;border:none;border-radius:10px;padding:5px;"> | ||
<span class="style-gradient-text">vvf Pergine</span> | ||
</mark> | ||
<br> | ||
<br> | ||
<mark style="background-color:white;border:none;border-radius:10px;padding:5px;"> | ||
<span class="style-gradient-text">Valsugana</span> | ||
</mark> | ||
</h3> | ||
</div> | ||
<div class="mdl-cell mdl-cell--middle mdl-cell--12-col"> | ||
<button class="mdl-button mdl-js-button mdl-button--raised style-gradient style-button" | ||
style="width:100%;height:35px;color:white;border:none;border-radius:20px;;text-align:center;margin-bottom:15px" | ||
type="reset" | ||
onclick="location.href='index.php?back=true'"> | ||
Indietro | ||
<i class="material-icons">cancel</i> | ||
</button> | ||
</div> | ||
</section> | ||
|
||
|
||
<section class="mdl-cell mdl-cell--middle mdl-cell--9-col"> | ||
<div class="mdl-card mdl-shadow--8dp style-card" style="width:100%"> | ||
|
||
</div> | ||
</section> | ||
</div> | ||
<?php include "core/_footer.php" ?> | ||
</div> | ||
</main> | ||
</div> | ||
</body> | ||
|
||
</html> |