%BANNER_COOKIES%, also added a missing closing tag

master
Jan Danielzick 2020-03-09 12:18:22 +01:00
parent 3d503e655c
commit 919271f019
1 changed files with 17 additions and 15 deletions

View File

@ -30,21 +30,23 @@ $navbar = "profile";
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
%NAVBAR%
<div class="container">
<div class="item-1">
<center><h1>ThreadR</h1></center>
</div>
<div class="item-2">
<?php
if(isset($_GET['action'])) {
if($_GET['action']=='edit') {
include("./edit.php");
%NAVBAR%
<div class="container">
<div class="item-1">
<center><h1>ThreadR</h1></center>
</div>
<div class="item-2">
<?php
if(isset($_GET['action'])) {
if($_GET['action']=='edit') {
include("./edit.php");
}
} else {
include("./default.php");
}
} else {
include("./default.php");
}
?>
?>
</div>
</div>
</div>
%BANNER_COOKIES%
</body>
</html>