26 lines
576 B
PHP
26 lines
576 B
PHP
<?php
|
|
/**
|
|
* Copyright (c) 2019.
|
|
* Author: Igor Barkov <lopar.4ever@gmail.com>
|
|
* Project name: Battles-Game
|
|
* One file to rule 'em all!
|
|
*/
|
|
|
|
session_start();
|
|
if (!isset($_SESSION['uid'])) header("Location: index.php");
|
|
require_once 'functions.php';
|
|
|
|
?>
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<link rel=stylesheet href="css/main.css">
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
<div style="text-align: right;"><input type="button" onClick="location.href='main.php';" value="Вернуться"></div>
|
|
<h2>Особые умения</h2>
|
|
|
|
<?php
|
|
|