Praktikum1_Kai
This commit is contained in:
12
Praktikum1_Kai/webteams/template/form0.tpl
Normal file
12
Praktikum1_Kai/webteams/template/form0.tpl
Normal 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">
|
37
Praktikum1_Kai/webteams/template/form1.tpl
Normal file
37
Praktikum1_Kai/webteams/template/form1.tpl
Normal file
@ -0,0 +1,37 @@
|
||||
<input type="hidden" value="$id_s" id="id_s" name="id_s" />
|
||||
|
||||
<!-- Mitglied 1 -->
|
||||
<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>
|
||||
<div>
|
||||
<label for="semesteranzahl1_s">1. Anzahl Semester</label>
|
||||
<input type="text" value="$semesteranzahl1_s" id="semesteranzahl1_s" name="semesteranzahl1_s" required />
|
||||
</div>
|
||||
|
||||
<!-- Mitglied 2 -->
|
||||
<div>
|
||||
<label for="name2_s">2. Name</label>
|
||||
<input type="text" value="$name2_s" id="name2_s" name="name2_s" required />
|
||||
</div>
|
||||
<div>
|
||||
<label for="vorname2_s">2. Vorname</label>
|
||||
<input type="text" value="$vorname2_s" id="vorname2_s" name="vorname2_s" required />
|
||||
</div>
|
||||
<div>
|
||||
<label for="matrnr2_s">2. Matrikelnummer</label>
|
||||
<input type="text" value="$matrnr2_s" id="matrnr2_s" name="matrnr2_s" required />
|
||||
</div>
|
||||
<div>
|
||||
<label for="semesteranzahl2_s">2. Anzahl Semester</label>
|
||||
<input type="text" value="$semesteranzahl2_s" id="semesteranzahl2_s" name="semesteranzahl2_s" required />
|
||||
</div>
|
12
Praktikum1_Kai/webteams/template/form2.tpl
Normal file
12
Praktikum1_Kai/webteams/template/form2.tpl
Normal file
@ -0,0 +1,12 @@
|
||||
<div>
|
||||
<input class="button" type="submit" value="Speichern" />
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<form id="idWTForm" action="/index" method="POST">
|
||||
<div>
|
||||
<input class="button" type="submit" value="Abbrechen" />
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
17
Praktikum1_Kai/webteams/template/list0.tpl
Normal file
17
Praktikum1_Kai/webteams/template/list0.tpl
Normal 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>
|
||||
<tr>
|
||||
<th>Name (1)</th><th>Vorname (1)</th><th>Matr.-Nr. (1)</th><th>Anzahl Semester (1)</th>
|
||||
<th>Name (2)</th><th>Vorname (2)</th><th>Matr.-Nr. (2)</th><th>Anzahl Semester (2)</th>
|
||||
<th>Aktion</th>
|
||||
</tr>
|
5
Praktikum1_Kai/webteams/template/list1.tpl
Normal file
5
Praktikum1_Kai/webteams/template/list1.tpl
Normal 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>$semesteranzahl1_s</td>
|
||||
<td>$name2_s</td><td>$vorname2_s</td><td>$matrnr2_s</td><td>$semesteranzahl2_s</td>
|
||||
<td><a href="/edit/$id_s">bearbeiten</a> <a class="clDelete" href="/delete/$id_s">löschen</a></td>
|
||||
</tr>
|
7
Praktikum1_Kai/webteams/template/list2.tpl
Normal file
7
Praktikum1_Kai/webteams/template/list2.tpl
Normal file
@ -0,0 +1,7 @@
|
||||
</table>
|
||||
<div>
|
||||
<a href="/add">erfassen</a>
|
||||
<a href="/?form=0">Ansicht</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
12
Praktikum1_Kai/webteams/template/listaufz0.tpl
Normal file
12
Praktikum1_Kai/webteams/template/listaufz0.tpl
Normal 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>
|
7
Praktikum1_Kai/webteams/template/listaufz1.tpl
Normal file
7
Praktikum1_Kai/webteams/template/listaufz1.tpl
Normal file
@ -0,0 +1,7 @@
|
||||
<!-- Sie müssen Ergänzungen vornehmen -->
|
||||
<li>Gruppe $id_s: <a href="/edit/$id_s">bearbeiten</a> <a class="clDelete" href="/delete/$id_s">löschen</a>
|
||||
<ul>
|
||||
<li>$name1_s, $vorname1_s, $matrnr1_s, $semesteranzahl1_s</li>
|
||||
<li>$name2_s, $vorname2_s, $matrnr2_s, $semesteranzahl2_s</li>
|
||||
</ul>
|
||||
</li>
|
7
Praktikum1_Kai/webteams/template/listaufz2.tpl
Normal file
7
Praktikum1_Kai/webteams/template/listaufz2.tpl
Normal file
@ -0,0 +1,7 @@
|
||||
</ul>
|
||||
<div>
|
||||
<a href="/add">erfassen</a>
|
||||
<a href="/?form=1">Ansicht</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user