-
Notifications
You must be signed in to change notification settings - Fork 0
/
chatmsg.html
36 lines (36 loc) · 934 Bytes
/
chatmsg.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
<!DOCTYPE html>
<html>
<head>
<title>Event Countdown</title>
<meta charset='utf-8'/>
<meta name='viewport' content='width=device-width'/>
<link href='./main.css' rel="stylesheet">
<script src='./languages.js'></script>
<script src='./webxdc.js'></script>
<script src='./sendmsg.js'></script>
<style type='text/css'></style>
</head>
<font size='6'>Event Countdown</font>
</font>
<body>
<form>
<table id='tableInfo' class="table">
<th>
<p>
<output class="eventlabel" id="infoTxt"></output>
</p>
</th>
</table>
<br>
<input class="button" type='button' id='btnChatMsg' onclick=sendChatMsg();>
<input class="button" type='button' id='btnSilentMsg' onclick=sendSilentMsg(); style='float: right'>
<div style='text-align:center;padding:10px;'>
<input class="button" type='button' id='cancel' onclick=cancelSendMsg();>
</div>
</form>
<script>
infoSite = true;
changeLanguage();
</script>
</body>
</html>