Skip to content
Snippets Groups Projects
Commit a117dd07 authored by Scafaru Luminita (Student Com20)'s avatar Scafaru Luminita (Student Com20)
Browse files

Lab 3 Appl. Engineering Scafaru

parents
No related branches found
No related tags found
No related merge requests found
<!DOCTYPE html>
<html>
<head>
<title> Seite1 </title>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<h1>Liste der ausgeliehen Buecher </h1>
<div>
<button type="button">New</button>
</div>
<table style="width:100%">
<tr>
<th>Name des Buches</th>
<th>Ausgeliehen von</th>
<th>Ablaufdatum</th>
<th>Modify/Delete</th>
</tr>
<tr>
<td>Buch 1</td>
<td>Name Nachname</td>
<td>31.3.2022</td>
<td><button type="button">Modify</button><button type="button">Delate</button></td>
</tr>
<tr>
<td>Buch 2</td>
<td>Name Nachname</td>
<td>31.12.2021</td>
<td><button type="button">Modify</button><button type="button">Delate</button></td>
</tr>
<tr>
<td>Buch 3</td>
<td>Name Nachname</td>
<td>14.12.2021</td>
<td><button type="button">Modify</button><button type="button">Delate</button></td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title> Seite2 </title>
</head>
<body>
<h1>Eintrag zu erstellen oder zu aendern</h1>
<div>
<label for="Buecher">Buch auswaehlen</label>
<select name="Buecher" id="Buecher">
<option value="Buch1">Buch 1</option>
<option value="Buch2">Buch 2</option>
<option value="Buch3">Buch 3</option>
</select>
</div>
<label for="Benutzer">Benutzer auswaehlen</label>
<select name="Benutzer" id="Buecher">
<option value="Benutzer1">Benutzer 1</option>
<option value="Benutzer2">Benutzer 2</option>
<option value="Benutzer3">Benutzer 3</option>
</select>
<div>
</div>
<button>OK</button>
<button>Cancel</button>
</body>
</html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment