-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
82 lines (72 loc) · 2.57 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
//creo una sessione per rendere le operazioni meno "hardcoded"
session_start();
?>
<!DOCTYPE html>
<html lang="it">
<head>
<title>ProblemSolver</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="http://localhost/PROblemSolver/css/main.css">
</head>
<body background="messina.jpg">
<div class="container">
<!-- navbar -->
<nav class="navbar">
<span class="open-slide">
<a href="#" onclick="openSlideMenu()">
<svg width="30" height="30">
<path d = "M0,5 30,5" stroke="#fff" stroke-width="5"/>
<path d = "M0,14 30,14" stroke="#fff" stroke-width="5"/>
<path d = "M0,23 30,23" stroke="#fff" stroke-width="5"/>
</svg>
</a>
</span>
<ul class="navbar-nav">
<li><a href="#">Home</a></li>
<li><a href="http://localhost/PROblemSolver/prova.php">Naviga Problemi</a></li>
<li><a href="http://localhost/PROblemSolver/report.php">Riporta Problema</a></li>
<li><a href="http://localhost/PROblemSolver/login.php">Login/Registrati</a></li>
<li><a href="http://localhost/PROblemSolver/cerca.php"> Cerca Problemi</a><li>
</ul>
</nav>
<!--Menu a scomparsa-->
<div id="side-menu" class="side-nav">
<a href="#" class="btn-close" onclick="closeSlideMenu()">×</a>
<a href="#">Home</a>
<a href="http://localhost/PROblemSolver/prova.php">Naviga Problemi</a>
<a href="http://localhost/PROblemSolver/report.php">Riporta Problema</a>
<a href="http://localhost/PROblemSolver/login.php">Login/Registrati</a>
<a href="http://localhost/PROblemSolver/cerca.php"> Cerca Problemi</a>
</div>
<!-- main body-->
<div class="stripe">
<h1>BENVENUTO NEL PORTALE ProblemSolver </h1>
<p>
<b>
riporta i tuoi problemi o consulta i problemi già riportati navigando tramite il menù soprastante
</b>
</p>
</div>
<div></div>
<!-- footer-->
<div class="footer">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
</p>
</div>
</div>
<script>
//script per aprire e chiudere il menù a scomparsa in modalità mobile
function openSlideMenu(){
document.getElementById("side-menu").style.width="250px"
document.getElementById("main.").style.marginLeft="250px"
}
function closeSlideMenu(){
document.getElementById("side-menu").style.width="0px"
document.getElementById("main.").style.marginLeft="0px"
}
</script>
</body>
</html>