mirror of
https://github.com/house-of-vanity/hexound.ru.git
synced 2025-07-07 06:44:07 +00:00
Initial
This commit is contained in:
44
new/index.php
Executable file
44
new/index.php
Executable file
@ -0,0 +1,44 @@
|
||||
<style>
|
||||
|
||||
html,
|
||||
body {
|
||||
height: 98%;
|
||||
}
|
||||
.wrapper {
|
||||
display: table;
|
||||
height: 100%;
|
||||
}
|
||||
.content {
|
||||
display: table-row;
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||||
</head>
|
||||
<div class='wrapper'>
|
||||
<div class='content'>
|
||||
<script
|
||||
src="https://code.jquery.com/jquery-3.2.1.min.js"
|
||||
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
|
||||
crossorigin="anonymous"></script>
|
||||
<?php
|
||||
session_start();
|
||||
|
||||
$LOG_LEVEL = 0;
|
||||
# you can use logging via PHP function lg(<severity>, <message>)
|
||||
# where severity may be 1 - Error, 0 -Info.
|
||||
# or you can use https://url?message=<your message>&severity=<severity> with every page redirect.
|
||||
include('logging.php');
|
||||
include('db.php');
|
||||
include('user_login.php');
|
||||
include('user_register.php');
|
||||
include('library.php');
|
||||
|
||||
|
||||
?>
|
||||
</div>
|
||||
<div class='footer'>
|
||||
<?php include('upload.php');?>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user