-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_old.html
68 lines (58 loc) · 1.79 KB
/
index_old.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
<html>
<head>
<title>Webjobs Tester</title>
<!-- <script src="https://cdn.babylonjs.com/babylon.js"></script> -->
<script id="require" data-main="testsite/config" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.5/require.min.js"></script>
<!--
D:\Node\webjobs\node_modules\requirejs\bin\r.js
<script data-main="testsite/config" src="node_modules\requirejs\bin\r.js"></script>
-->
<!--
<script src="https://cdn.babylonjs.com/babylon.max.js"></script>
<script src="https://cdn.babylonjs.com/babylon.worker.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="./index.js"></script>
-->
<style>
html, body {
overflow: hidden;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
</style>
</head>
<form>
<div>
<label for="param1">Parameter One</label>
<input id="param1" type="text" name="text">
<label for="param2">Parameter Two</label>
<input id="param2" type="text" name="text">
<input id="paramop" type="text" list="operators" />
<datalist id="operators">
<option value="+">
<option value="-">
<option value="*">
<option value="/">
</datalist>
</div>
<div id="addButton" class="button">
Add
</div>
<div>
<textarea id="result"></textarea>
</div>
</form>
</body>
</html>