-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/styles.css">
<link rel="icon" type="image/x-icon" href="/media/favicon.ico">
<title>IAER JavaScript</title>
</head>
<body>
<div class="search">
<form class="form_" id="serial" action="javascript:void(0);" onsubmit="submitSerials()">
<textarea class ="serial_area" name="serialarea" cols="10" rows="25" placeholder="Serials here!"></textarea><br>
<input type="button" onclick="submitSerials()" class="submit-box" value=" Submit serials ">
</form>
<div class="options" id="options">
<input type="button" onclick="deleteSerials()" class="submit-box" value=" Delete selected ">
</div>
<div class="log" id="log">
Logs will appear here.
</div>
</div>
<div id="resultDiv" class="deviceContent"><br>
<p>Enter serials into the left input field (max length per serial is 10).
<br>Seperate serials with a linebreak by hitting Enter.<br>
After all desired serials are entered, click "Submit serials"!</p></div>
<script src="/js/app.js"></script>
</body>
</html>