-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
77 lines (63 loc) · 3.04 KB
/
index.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>BF4 Camo LA Lamps Calculator</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
</head>
<body>
<div id="content"></div>
<div class="container">
<h4>Code to insert at the temple pad:</h4>
<p>839 80 80 0000</p>
</div>
<div class="container">
<form class="form-horizontal">
<fieldset>
<!-- Form Name -->
<legend>Form Name</legend>
<div data-bind="foreach: inputs">
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" data-bind="text: text, attr: { for: name }"></label>
<div class="col-md-4">
<input type="text" class="form-control input-md"
data-bind="attr: { id: name, name: name, placeholder: name }, value: value, valueUpdate: 'afterkeydown'">
</div>
</div>
</div>
<!-- Button -->
<div class="form-group">
<label class="col-md-4 control-label" for="run"></label>
<div class="col-md-4">
<button id="run" name="run" class="btn btn-primary" data-bind="click: run">run</button>
<!--</div>-->
<!--</div>-->
<!-- Button -->
<!--<div class="form-group">-->
<!--<label class="col-md-4 control-label" for="populate"></label>-->
<!--<div class="col-md-4">-->
<button id="populate" name="populate" class="btn btn-secondary" data-bind="click: populateTest">populate test</button>
<button id="clear" name="clear" class="btn btn-secondary" data-bind="click: clear">clear</button>
</div>
</div>
<!-- Textarea -->
<div class="form-group">
<label class="col-md-4 control-label" for="solutions">solutions</label>
<div class="col-md-4">
<textarea class="form-control" id="solutions" name="solutions" data-bind="value: solutions"></textarea>
</div>
</div>
</fieldset>
</form>
</div>
<div class="container">
<a href="https://github.com/xenogenesi/video-morse-decode">video-morse-decode</a>
</div>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.0/knockout-debug.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootbox.js/4.4.0/bootbox.js"></script>
<script src="dice-camo.js"></script>
</body>
</html>