-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathclient.html
executable file
·42 lines (35 loc) · 1.75 KB
/
client.html
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>WebSocket</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/icon?family=Material+Icons" />
<link rel="stylesheet" type="text/css" href="resources/css/estilo.css?201511122200" />
</head>
<body>
<!--[if lt IE 10]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<section id="login"><!--
--><form method="post" action="http://localhost:8080/auth.php" charset="UTF-8" name="authForm">
<div><input id="user" name="user" placeholder="Usuário" type="text" /></div>
<div><input id="pass" name="pass" placeholder="Senha" type="password" /></div>
<div><button type="submit" id="conectar">Conectar</button></div>
</form><!--
--></section>
<section id="chat" style="display:none;">
<div class="bloco" id="show-wrapp"><div class="alinhamento-vertical"><div id="show"></div><input id="msg" type="textbox" /></div></div><!--
--><div class="bloco" id="clients"></div>
<button id="recarregar">Reload</button>
</section>
<script src="resources/js/vendor/jquery-1.11.3.min.js?201511122200"></script>
<script src="resources/js/plugins.js?201511122200"></script>
<script src="resources/js/main.js?201511122200"></script>
<script src="resources/js/script.js?201511122200"></script>
</body>
</html>