-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublic.php
37 lines (37 loc) · 990 Bytes
/
public.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
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="pt-BR">
<?php include("parts/head.php"); ?>
<body>
<div class="title">
<span><a href="index.php">chat</a>\public\<?php
include("parts/user.php");
?>
</span>
</div>
<?php include("parts/menu.php"); ?>
<div class="container">
<div class="content">
<a href="php/messages_public.php" target="_blank">Ver toda conversa</a>
<br><br>
<div id="outMessages"></div>
<br><br>
<form id="chat">
<label for="inMessage">Mensagem:</label>
<br>
<input type="text" id="inMessage" autocomplete="off" maxlength="110" spellcheck="true">
<input type="button" value="Enviar" id="btSend">
<br>
<span id="letters">0/110</span>
<br><br>
<span id="outAlert"></span>
</form>
</div>
</div>
<?php include("parts/footer.php"); ?>
</body>
<script src="js/chat_public.js"></script>
<script src="js/script.js"></script>
</html>