-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (51 loc) · 2.11 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
<!doctype html>
<html>
<head>
<title>Systems of Linear Equations</title>
<script src="js/Michailov.Base.js"></script>
<script src="js/Michailov.Math.js"></script>
<script src="js/Michailov.Equations.js"></script>
<script src="js/Michailov.Equations.Constraints.js"></script>
<script src="js/Michailov.Equations.UI.js"></script>
<link href="css/Michailov.Equations.css" rel="stylesheet" />
<script>
//Michailov.Options.debugEnabled = true;
</script>
</head>
<body onload="Michailov.Equations.UI.onStartPageLoad();">
<div id="header" class="page-title">Systems of Linear Equations <span id="appEdition"></span></div>
<div id="body" class="page-body">
<p>
<select id="RankBox" class="selector">
<option value="2">x, y</option>
<option value="3">x, y, z</option>
<option value="4">x, y, z, p</option>
<option value="5">x, y, z, p, q</option>
</select>
</p>
<p>
<br />
<br />
<select id="CoeffLimitBox" class="selector">
<option value="10">10</option>
<option value="50">50</option>
<option value="100">100</option>
</select>
</p>
<p>
<br />
<br />
<span id="StartButton" class="button" onclick="window.location = 'problem.html#{"rank" : ' + document.getElementById('RankBox').value + ', "coeffLimit" : ' + document.getElementById('CoeffLimitBox').value + '}';"> > </span>
</p>
</div>
<div id="footer">
<div>
<p class="copyright" style="margin-left: 20pt">
Version <span id="appVersion">0.0</span><br />
Designed and written by Zlatko Michailov.<br />
For support, go to <a href="http://zlatko.michailov.org/search/label/Equations">http://zlatko.michailov.org/search/label/Equations</a><br />
</p>
</div>
</div>
</body>
</html>