-
Notifications
You must be signed in to change notification settings - Fork 0
/
John.php
43 lines (38 loc) · 1.24 KB
/
John.php
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
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./CSS/MainPage.css">
<link rel="stylesheet" href="./CSS/John.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class='container mt-5'>
<h1 class="Area">Game name</h1>
<div class="chat-box" >
<div class="chat-header">
<button class="Deletion">Delete game</button>
</div>
<div class="chat-list">
<input class="zprava_input" name="Name" placeholder="Jméno" type="text">
<br>
<br>
<input class="zprava_input" name="Zprava" placeholder="Zpráva" type="text">
<br>
<br>
<button class="Send" onclick="send()">Odeslat</button>
<?php
//(!mysql_select_db("chat")) // vybere databázi
?>
<style>
.Chat{
background-color: black;
opacity: 0.9;
margin-left: 500px;
color: white;
}
.zprava_input{
margin-left: 460px;
}
</style>