-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
27 lines (25 loc) · 938 Bytes
/
popup.html
File metadata and controls
27 lines (25 loc) · 938 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<script src="jquery.js"></script>
</head>
<body>
<div style="display:flex;">
<div class="formItem">
<textarea id="textareaMarks" rows="10" cols="5" placeholder='insert here one column marks in the same order as in eokul/stoys'></textarea>
</div>
<div class="formItem">
<h2>E-Okul</h2>
<button id="writeNoteButton">Write marks in eokul</button>
<hr>
<h2>STOYS</h2>
<p>Select the column first then click in the button</p>
<input type="number" min=1 max=13 id="colNum" value="3"><br>
<button id="writeNoteButtonStoys" disabled >Write marks in STOYS</button>
<!--<button id="ColumnNumBtn">CheckColumn</button>-->
</div>
</div>
<script src="popup.js"></script>
</body>
</html>