-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (41 loc) · 1.13 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
<!DOCTYPE html>
<html lang=en>
<head>
<meta http-equiv=content-type content="text/html; charset=utf-8" />
<meta name=author content="Lars Kiesow" />
<meta name=viewport content="width=device-width, initial-scale=1">
<link rel=stylesheet type=text/css href=index.css />
<script type=application/javascript src=index.js></script>
<title>Virtual Machine Selector</title>
</head>
<body onload="load_config()">
<header>
<img src='https://avatars.githubusercontent.com/u/37844?s=96&v=4' />
<h1>Virtual Machine Selector</h1>
</header>
<div id=selector>
</div>
<div id=info>
Der Platzhalter <code>{i}</code> ist für den Index der hinzugefügten Maschine nutzbar.
</div>
<div class=buttons>
<input id=amount type=number value=1 min=1 />
<button onclick="add_vm()">Hinzufügen</button>
</div>
Beantragte VMs:
<pre id=order>
</pre>
SSh-Key für Owner:
<pre>
ssh-ed25519 AAAAC3…
</pre>
<div class=buttons>
<button onclick="copy()">🗎 Kopieren</button>
</div>
<footer>
<a href=https://github.com/virtUOS/vm-selector>GitHub</a>
|
<a href=https://www.virtuos.uni-osnabrueck.de/serviceseiten/impressum.html>Impressum</a>
</footer>
</body>
</html>