-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.php
More file actions
33 lines (32 loc) · 769 Bytes
/
Copy pathsettings.php
File metadata and controls
33 lines (32 loc) · 769 Bytes
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
<?php
session_start();
require_once('engine/engine.php');
if(empty($_SESSION['login'])) {
header("Location: index");
}
?>
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Wikicountries | Настройки</title>
<?php
show_head_html();
?>
</head>
<body>
<header class="top">
<?php
check_user_status();
show_account_name();
show_account_links();
?>
</header> <br>
<?php show_menu(); ?>
<div class="created_article">
<h1>Настройки</h1> <hr>
<?php
get_user_info();
?>
</div>
</body>
</html>