-
Notifications
You must be signed in to change notification settings - Fork 0
/
newPodcastTest.html
75 lines (67 loc) · 3.59 KB
/
newPodcastTest.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="de">
<head>
<title>Neuer Podcast</title>
<meta charset="utf-8">
</head>
<body>
<header>
<img src="assets/img/site-logo.jpeg" width="500" height="300" alt="Das Logo der Website. Ein Mikrofon umrundet von einem Kopfhörer">
<h1>Pott Catcher</h1>
</header>
<nav>
<a href="index.html">Startseite</a> |
<a href="podcast.html">Podcast</a> |
<a href="episode.html">Episode</a> |
<a href="newPodcast.html">New Podcast</a>
</nav>
<main>
<section>
<h2>Neuen Podcast hinzufügen</h2>
<form action="https://labs.inf.fh-dortmund.de/podcastService/testCreatePodcast.php" method="post">
<fieldset>
<legend>Der Podcast</legend>
<label>Titel<input name="pctitle" type="text" value="Lage der Nation" maxlength="100" pattern="[A-Z].*" autofocus required></label><br>
<label>Beschreibung
<textarea name="pcdescription" placeholder="Bitte geben Sie eine Beschreibung an" maxlength="500" cols="60" rows="5" required>Politik-Podcast</textarea>
</label>
</fieldset>
<fieldset>
<legend>Persönliche Angaben</legend>
<label>Autor(en)<input name="pcauthors" type="text" value="Phillip Banse, Ulf Buermeyer" pattern=".*[^,]" required></label><br>
<label>Name des Besitzers<input name="pcownername" type="text" value="Lage der Nation Media GmbH & Co. KG" required></label><br>
<label>E-Mail des Besitzers<input name="pcowneremail" type="email" value="[email protected]" required></label><br>
</fieldset>
<fieldset>
<legend>Technisches</legend>
<label>Kategorien
<select name="pccategories" multiple>
<option value="politics" selected>Politik</option>
<option value="tech">Technik</option>
<option value="science">Wissenschaft</option>
</select>
</label><br>
<label>Letztes Update (Datum)<input name="pclastupdatedate" type="date" value="2020-01-01" min="2000-01-01" required></label><br>
<label>Letztes Update (Uhrzeit)<input name="pclastupdatetime" type="time" value="12:00" required></label><br>
</fieldset>
<fieldset>
<legend>Abgabe</legend>
<input name="submit" type="submit" value="Podcast Hinzufügen">
<input name="reset" type="reset" value="Formular Zurücksetzten">
</fieldset>
</form>
</section>
</main>
<aside>
<h5>Neueste Episoden</h5>
<ul>
<li>2022-10-19: Lage der Nation - 307: 49-Euro-Ticket, AKW-Streit, Niedersachsen-Wahl, Strategie für die FDP, russischer Staatsterror, Risiko eines Atomwaffeneinsatzes399</li>
<li>2022-10-15: LNP - 443: Auf YOLO konfigurieren – LNP Spezial zum 400.000.000€-Hack</li>
<li>2022-06-26: Chaosradio - 277: Gesundheits-Apps</li>
</ul>
</aside>
<footer>
<small>© by Lars & Marco 2022</small>
</footer>
</body>
</html>