mirror of
https://github.com/aljazceru/squatm3gator.git
synced 2025-12-17 06:34:23 +01:00
10 lines
538 B
HTML
10 lines
538 B
HTML
<!doctype html>
|
|
<title>Websockets tutorial</title>
|
|
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/socket.io/1.3.6/socket.io.min.js"></script>
|
|
<script type="text/javascript" src="{{ url_for('static', filename='app.js') }}"></script>
|
|
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
|
|
<div class=page>
|
|
<h1>Hello World!</h1>
|
|
<button type="button" onclick="json_button()">Json Message</button>
|
|
<button type="button" onclick="alert_button()">Alert Message</button>
|
|
</div> |