-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlash.html
93 lines (88 loc) · 1.54 KB
/
Flash.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<body>
<!--Title-->
<h1 style="text-align: center;">"Flash-Calc"</h1>
<!--Problem-->
<table>
<tr>
<td>Problem name:</td>
<td>
<input type="text" id="problem_name" name="name" value="llecalas2">
</td>
<td>
<button onClick="window.location.reload ();">Restart
</button>
</td>
</tr>
</table>
<br>
<table>
<!-- Create rows -->
<tr>
<!-- Create cells in each row -->
<td>Configuration:</td>
<td></td>
</tr>
<tr>
<td>OS:</td>
<td id="os_td"></td>
</tr>
<tr>
<td>Model:</td>
<td id="model_td"></td>
</tr>
<tr>
<td>Parameter table:</td>
<td id="partable_td"></td>
</tr>
</table>
<br>
<div id="saveconfig_div">
</div>
<br>
<table id="ncomp_table">
<tr>
<td id=complabel_td></td>
<td id="ncomp_td"></td>
<td id="comptable_td"></td>
</tr>
</table>
<table id="wrapper_table">
</table>
<br>
<div id="savecomp_div">
</div>
<br >
<table id="rqtable">
<tr id="rqhead_tr">
</tr>
<tr id="r_tr">
</tr>
<tr id="q_tr">
</tr>
</table>
<br>
<table id="nflash_table">
<tr>
<td id=flashlabel_td></td>
<td id="nflash_td"></td>
<td id="flashtable_td"></td>
</tr>
</table>
<table id="tpz_table">
</table>
<br>
<br>
<br>
<p>Comments:</p>
<textarea id="comment" name="comment" rows="4" cols="50">
</textarea>
<br>
<br>
<div id="div_download">
</div>
<script type="module" src="src/main.js">
</script>
</body>
</html>