batch readme

This commit is contained in:
darthsandmann
2016-10-11 19:01:39 +02:00
parent 84252d2223
commit 4e49e87940
19 changed files with 548 additions and 0 deletions

View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title>Web-Teams</title>
<meta charset="UTF-8" />
<style>
@import "/webteams.css";
</style>
<script type="text/javascript" src="/webteams.js"></script>
</head>
<body>
<form id="idWTForm" action="/save" method="POST">

View File

@ -0,0 +1,14 @@
<input type="hidden" value="$id_s" id="id_s" name="id_s" />
<div>
<label for="name1_s">1. Name</label>
<input type="text" value="$name1_s" id="name1_s" name="name1_s" required />
</div>
<div>
<label for="vorname1_s">1. Vorname</label>
<input type="text" value="$vorname1_s" id="vorname1_s" name="vorname1_s" required />
</div>
<div>
<label for="matrnr1_s">1. Matrikelnummer</label>
<input type="text" value="$matrnr1_s" id="matrnr1_s" name="matrnr1_s" required />
</div>
<!-- Ihre Ergänzung -->

View File

@ -0,0 +1,6 @@
<div>
<input type="submit" value="Speichern" /><!-- Ihre Ergänzung -->
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<title>Web-Teams</title>
<meta charset="UTF-8" />
<style>
@import "/webteams.css";
</style>
<script type="text/javascript" src="/webteams.js"></script>
</head>
<body>
<table> <!-- HIER müssen Sie eine Ergänzung vornehmen -->
<tr>
<th>Name (1)</th><th>Vorname (1)</th><th>Matr.-Nr. (1)</th>
<th>Name (2)</th><th>Vorname (2)</th><th>Matr.-Nr. (2)</th>
<th>Aktion</th>
</tr>

View File

@ -0,0 +1,5 @@
<tr> <!-- HIER müssen Sie eine Ergänzung vornehmen -->
<td>$name1_s</td><td>$vorname1_s</td><td>$matrnr1_s</td>
<td>$name2_s</td><td>$vorname2_s</td><td>$matrnr2_s</td>
<td><a href="/edit/$id_s">bearbeiten</a>&nbsp;<a href="/delete/$id_s">löschen</a></td>
</tr>

View File

@ -0,0 +1,6 @@
</table>
<div>
<a href="/add">erfassen</a>
</div>
</body>
</html>

View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title>Web-Teams</title>
<meta charset="UTF-8" />
<style>
@import "/webteams.css";
</style>
<script type="text/javascript" src="/webteams.js"></script>
</head>
<body>
<ul>

View File

@ -0,0 +1,7 @@
<!-- Sie müssen Ergänzungen vornehmen -->
<li>Gruppe $nr: <a href="/edit/$id_s">bearbeiten</a>&nbsp;<a href="/delete/$id_s">löschen</a>
<ul>
<li>$name1_s, $vorname1_s, $matrnr1_s</li>
<li>$name2_s, $vorname2_s, $matrnr2_s</li>
</ul>
</li>

View File

@ -0,0 +1,6 @@
</ul>
<div>
<a href="/add">erfassen</a>
</div>
</body>
</html>