30 lines
777 B
PHP
30 lines
777 B
PHP
<?php
|
|
session_start();
|
|
%PLEAZE_NO_CACHE%
|
|
%REQUIRE_LOGIN%
|
|
$navbar = "logout";
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>ThreadR - Home</title>
|
|
%STYLESHEET%
|
|
<link rel="icon" type="image/png" href="%CONTENT_DIR%/img/favicon-32x32.png" sizes="32x32" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
%NAVBAR%
|
|
<br />
|
|
<div class="container">
|
|
<div class="item-1">
|
|
<h1>
|
|
<center>Bye! Cya around some time soon.</center>
|
|
</h1>
|
|
</div>
|
|
<div class="item-2">
|
|
<img src="%CONTENT_DIR%/img/ThreadR.svg" alt="ThreadR" height="100%" width="100%">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|