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