mirror of
https://github.com/eddyem/eddys_snippets.git
synced 2025-12-06 10:45:12 +03:00
17 lines
446 B
HTML
17 lines
446 B
HTML
<html>
|
|
<head>
|
|
<title>Index</title>
|
|
<script src="/static/requests.js" type="text/javascript" language="javascript"></script>
|
|
<script src="/static/auth.js" type="text/javascript" language="javascript"></script>
|
|
</head>
|
|
<body onload="auth.init();">
|
|
<p>Text
|
|
<p>More text
|
|
<p>
|
|
<div id="wsmsgs"></div>
|
|
<div id="errmsg" style='background-color: red;'></div>
|
|
<p>
|
|
<input type="text" id="wssnd" onchange="auth.wssend($('wssnd').value);">
|
|
</body>
|
|
</html>
|