-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions_watchmessages.html
35 lines (35 loc) · 1.29 KB
/
options_watchmessages.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
<html>
<head>
<link rel="stylesheet" href="./styles/semantic.min.css">
<link rel="stylesheet" href="./styles/custom.css">
<script src="./scripts/TweenMax.min.js"></script>
</head>
<body>
<div class="ui segments options_watchmessages">
<div class="ui top segment right aligned"><span class="titletext" id="i_title"></span></div>
<div class="ui top segment inverted blue"><h4 id="transactionsquestion"></h4></div>
<div class="ui attached segment">
<div class="ui radio checkbox">
<input name="watch" type="radio" value="1" id="watchAll">
<label id="i_all"></label>
</div><br />
<div class="ui radio checkbox">
<input name="watch" type="radio" value="2" id="watchIncoming">
<label id="i_incoming"></label>
</div><br />
<div class="ui radio checkbox">
<input name="watch" type="radio" value="3" id="watchOutgoing">
<label id="i_outgoing"></label>
</div><br />
</div>
<div class="ui segment bottom attached">
<div class="ui small buttons">
<button class="ui left attached green button" id="savemessages"></button>
<button class="ui right attached orange button" id="cancelmessages"></button>
</div>
</div>
</div>
<script src="./scripts/globals.js"></script>
<script src="./scripts/options_watchmessages.js"></script>
</body>
</html>