-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathframing.html
More file actions
57 lines (55 loc) · 1.89 KB
/
framing.html
File metadata and controls
57 lines (55 loc) · 1.89 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<div id="form">
<span id="mode" hidden></span>
<div class="row form-group">
<div class="col-12">
<div id="btnGroup" class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-success active">
<input id="btnBit" name="buttons" type="radio" />Bit
</label>
<label class="btn btn-success">
<input id="btnChar" name="buttons" type="radio" checked />Char
</label>
</div>
</div>
</div>
<div class="row form-group">
<div class="col-6 col-sm-2 com-md-1 col-lg-1">
<b>Flag: <span id="flag"> </span></b>
</div>
<div class="col-4 col-sm-3">
<b>Escape: <span id="escape"> </span></b>
</div>
</div>
<div class="row form-group">
<div class="col-12">
<b><label id="questionLabel"></label></b>
</div>
<div class="col-12">
<label id="randomMessage"></label>
<button id="newMessage" class="btn btn-info btn-sm" data-toggle="tooltip" data-placement="right" title="Generate new message">
<span class="fas fa-sync-alt"></span>
</button>
</div>
</div>
<div class="row form-group">
<div class="col-12">
<b><label id="answerLabel"></label></b>
</div>
<div class="col-12 col-sm-7 col-md-5 col-lg-3">
<input id="answer" class="form-control" type="text" />
</div>
</div>
<div class="row form-group">
<div class="col-12">
<button id="submitAnswer" type="button" class="btn btn-primary">Submit Answer</button>
</div>
</div>
</div>
<script src="js/framing.js"></script>
<!--<script type="text/javascript">
$.ajax({
url: 'js/framing.js',
dataType: "script",
cache: false
});
</script>-->