Внедрение шаблонизатора.
This commit is contained in:
parent
7e91ef21db
commit
8b1a2e9b38
11
game.php
11
game.php
@ -12,13 +12,8 @@ if (empty($_SESSION['uid'])) header("Location: index.php");
|
|||||||
//$msg = filter_input(INPUT_POST,'msg');
|
//$msg = filter_input(INPUT_POST,'msg');
|
||||||
//$uid = $_SESSION['uid'];
|
//$uid = $_SESSION['uid'];
|
||||||
//if ($msg) db::c()->query('INSERT INTO `chat` (`cid`, `uid`, `msg`) VALUES (?i, ?i, "?s")', 1, $uid, $msg);
|
//if ($msg) db::c()->query('INSERT INTO `chat` (`cid`, `uid`, `msg`) VALUES (?i, ?i, "?s")', 1, $uid, $msg);
|
||||||
|
Template::header('Окно игры');
|
||||||
?>
|
?>
|
||||||
<!doctype html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Окно игры</title>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<link rel="stylesheet" href="css/main.css">
|
|
||||||
<style>
|
<style>
|
||||||
form {
|
form {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -71,8 +66,6 @@ if (empty($_SESSION['uid'])) header("Location: index.php");
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<header>
|
<header>
|
||||||
<a href="/user_anketa.php" title="Анкета" target="main"><img src="http://placehold.it/32x32/33ff33?text=A"/></a>
|
<a href="/user_anketa.php" title="Анкета" target="main"><img src="http://placehold.it/32x32/33ff33?text=A"/></a>
|
||||||
@ -107,5 +100,3 @@ if (empty($_SESSION['uid'])) header("Location: index.php");
|
|||||||
loadlink() // this will run after every 5 seconds
|
loadlink() // this will run after every 5 seconds
|
||||||
}, 5000);
|
}, 5000);
|
||||||
</script>
|
</script>
|
||||||
</body>
|
|
||||||
</html>
|
|
29
game2.php
29
game2.php
@ -12,13 +12,8 @@ if (empty($_SESSION['uid'])) header("Location: index.php");
|
|||||||
//$msg = filter_input(INPUT_POST,'msg');
|
//$msg = filter_input(INPUT_POST,'msg');
|
||||||
//$uid = $_SESSION['uid'];
|
//$uid = $_SESSION['uid'];
|
||||||
//if ($msg) db::c()->query('INSERT INTO `chat` (`cid`, `uid`, `msg`) VALUES (?i, ?i, "?s")', 1, $uid, $msg);
|
//if ($msg) db::c()->query('INSERT INTO `chat` (`cid`, `uid`, `msg`) VALUES (?i, ?i, "?s")', 1, $uid, $msg);
|
||||||
|
Template::header('Окно игры');
|
||||||
?>
|
?>
|
||||||
<!doctype html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Окно игры</title>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<link rel="stylesheet" href="css/main.css">
|
|
||||||
<style>
|
<style>
|
||||||
form {
|
form {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -79,34 +74,43 @@ if (empty($_SESSION['uid'])) header("Location: index.php");
|
|||||||
background: #555;
|
background: #555;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-messages {
|
.chat-messages {
|
||||||
min-height: 93%;
|
min-height: 93%;
|
||||||
max-height: 93%;
|
max-height: 93%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-messages__content {
|
.chat-messages__content {
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat__message {
|
.chat__message {
|
||||||
border-left: 3px solid #333;
|
border-left: 3px solid #333;
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat__message_black {
|
.chat__message_black {
|
||||||
border-color: #000;
|
border-color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat__message_blue {
|
.chat__message_blue {
|
||||||
border-color: blue;
|
border-color: blue;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat__message_green {
|
.chat__message_green {
|
||||||
border-color: green;
|
border-color: green;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat__message_red {
|
.chat__message_red {
|
||||||
border-color: red;
|
border-color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-input {
|
.chat-input {
|
||||||
min-height: 6%;
|
min-height: 6%;
|
||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
font-family: arial;
|
font-family: arial;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
@ -118,17 +122,16 @@ if (empty($_SESSION['uid'])) header("Location: index.php");
|
|||||||
margin: 1px;
|
margin: 1px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-form__input {
|
.chat-form__input {
|
||||||
width: 79%;
|
width: 79%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-form__submit {
|
.chat-form__submit {
|
||||||
width: 18%;
|
width: 18%;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<header>
|
<header>
|
||||||
Всякие заголовки, кнопки, ссылки, etc...
|
Всякие заголовки, кнопки, ссылки, etc...
|
||||||
@ -143,7 +146,9 @@ if (empty($_SESSION['uid'])) header("Location: index.php");
|
|||||||
</div>
|
</div>
|
||||||
<div class='chat-input'>
|
<div class='chat-input'>
|
||||||
<form method='post' id='chat-form'>
|
<form method='post' id='chat-form'>
|
||||||
<input id='message-text' class='chat-form__input' placeholder='Введите сообщение'> <input type='submit' class='chat-form__submit' value='=>'>
|
<input id='message-text' class='chat-form__input' placeholder='Введите сообщение'> <input type='submit'
|
||||||
|
class='chat-form__submit'
|
||||||
|
value='=>'>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -190,6 +195,7 @@ if (empty($_SESSION['uid'])) header("Location: index.php");
|
|||||||
function update() {
|
function update() {
|
||||||
send_request('load');
|
send_request('load');
|
||||||
}
|
}
|
||||||
|
|
||||||
interval = setInterval(update, 500);
|
interval = setInterval(update, 500);
|
||||||
|
|
||||||
//отлавливается событие отправки формы — это поможет отказаться от обновления страницы:
|
//отлавливается событие отправки формы — это поможет отказаться от обновления страницы:
|
||||||
@ -198,6 +204,3 @@ if (empty($_SESSION['uid'])) header("Location: index.php");
|
|||||||
return false; //Возвращаем ложь, чтобы остановить классическую отправку формы
|
return false; //Возвращаем ложь, чтобы остановить классическую отправку формы
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Loading…
Reference in New Issue
Block a user