-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 922 Bytes
/
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>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Pandler</title>
<style>
body {
margin: 0;
font-family: sans-serif;
background-color: #f1f1f1;
}
</style>
</head>
<body>
<div class="container">
<label for="shell">SHELL</label>
<input id="input-shell" type="text" name="shell" size="30">
<br>
<label for="host">HOST</label>
<input id="input-host" type="text" name="host" size="20" maxlength="20">
<label for"command">COMMAND</label>
<input id="input-command" type="text" name="command" size="70">
<!-- <input id="input-error" type="checkbox" name="error" value="show"> -->
<br>
<button id="save-command">Save</button>
</div>
</body>
<script>
require('./renderer.js')
</script>
</html>