-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·68 lines (66 loc) · 1.71 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
<!DOCTYPE html>
<html>
<head>
<title> Vocabularizer </title>
<script src="js/jquery.min.js"></script>
<script src="js/imtech_pager.js"></script>
<script type="text/javascript" language="javascript" src="js/vocabularizer.js"></script>
<link rel="stylesheet" type="text/css" href="css/vocabularizer.css">
<!--
<script>
$(document).click(function(){
//$("body").toggle();
$.ajax({
type: "POST",
url: "pythoncode.py",
data: { param: "hello2"},
dataType: 'html',
success:function(response) {
$('body').html(response);
}})
})
</script>
-->
</head>
<body>
<div id="inputSection">
<p class="header">Input Text:</p>
<textarea type="text" id="input_text" rows="15" cols="80"></textarea>
</div>
<div class="table">
<div id="paramSection">
<div id="params" class="equal">
<span class="paramItem">Number of Exercises: <input id="number" size=3 value=10></input></span>
<br>
<span class="paramItem">
Difficulty Level:
<select id='difficulty'>
<option value=0>Beginner</option>
<option value=1>Easy</option>
<option selected value=2>Medium</option>
<option value=3>Difficult</option>
<option value=4>Ridiculous</option>
</select>
</span>
<br>
<span class="paramItem">
Exercises Per Page:
<input id="numEx" size=3 value=5></input>
</span>
</div>
<button id="submit" class="equal">submit</button>
</div>
</div>
<div id="searchSection">
Search Exercises:
<input id="searchBox" type="text" />
<button id="searchButton">Search</button>
</div>
<div class="exercise">
<p class="header">Exercises:</p>
<ol>
</ol>
</div>
<div id="pagingControls"></div>
</body>
</html>