FrontendDavid/index.html

57 lines
2.5 KiB
HTML
Raw Normal View History

2020-06-05 09:08:05 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bücherwurm WebInterface</title>
2020-06-05 11:37:43 +00:00
<link rel="stylesheet" type="text/css" href="scss/main.css" media="screen" />
2020-06-05 09:08:05 +00:00
</head>
2020-06-05 10:33:08 +00:00
<body class="theme-1">
2020-06-05 09:08:05 +00:00
<div name="main"><!-- der ganze Inhalt ohne Hintergrund. Soll mobileFirst Senkrecht ausgerichtet sein -->
<h1>Bücherwurm Bibliotheksverwaltung</h1><!-- vorläufiger Titel der Webseite-->
<div><!-- Feld für Liste mit den Dropdowns, Inhalt wird mittig zentriert -->
<dl>
2020-06-05 09:31:17 +00:00
<form name="KatalogNav">
2020-06-05 09:08:05 +00:00
<dt>
<label for="choices">Katalog</label>
</dt>
<dd>
2020-06-08 12:41:59 +00:00
2020-06-05 09:31:17 +00:00
<select name="selection" id="selection" onchange="location.assign(this.value);">
2020-06-05 09:08:05 +00:00
<option></option>
2020-06-08 07:57:48 +00:00
<option value=findKatalog.htm>Finden</option>
<Option value="addKatalog.htm">Hinzufügen</Option>
<option value="changeKatalog.htm">Bearbeiten</option>
<option value="deleteKatalog.htm">Löschen</option>
2020-06-05 09:08:05 +00:00
</select>
</dd>
2020-06-05 09:31:17 +00:00
<dt>
<label for="choices">Inventar</label>
</dt>
<dd>
2020-06-08 12:41:59 +00:00
2020-06-05 09:31:17 +00:00
<select name="selection" id="selection" onchange="location.assign(this.value);">
<option></option>
2020-06-08 08:04:48 +00:00
<option value=findInventar.htm>Finden</option>
<Option value="addInventar.htm">Hinzufügen</Option>
<option value="deleteInventar.htm">Löschen</option>
2020-06-05 09:31:17 +00:00
</select>
</dd>
<dt>
<label for="choices">Verleihvorgang</label>
</dt>
<dd>
2020-06-08 12:41:59 +00:00
2020-06-05 09:31:17 +00:00
<select name="selection" id="selection" onchange="location.assign(this.value);">
<option></option>
<option value=findVerleih.htm>Finden</option>
<Option value="addVerleih.htm">Hinzufügen</Option>
<option value="changeVerleih.htm">Bearbeiten</option>
2020-06-05 09:31:17 +00:00
</select>
</dd>
2020-06-05 09:08:05 +00:00
</form>
</dl>
</div>
</div>
</body>
</html>