pogo/assets/web/setup.html

30 lines
800 B
HTML
Raw Permalink Normal View History

2017-09-21 23:10:16 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pogo Setup</title>
<link rel="stylesheet" href="/assets/setup.css">
</head>
<body>
<h1>Let's get Pogo setup</h1>
<form action="setup" method="post" class="setupform">
<label for="podcastname">Podcast Name</label>
<input type="text" id="podcastname" name="podcastname">
2017-09-21 23:10:16 +01:00
<label for="podcasthost">Podcast Host</label>
<input type="text" id="podcasthost" name="podcasthost">
2017-09-21 23:10:16 +01:00
<label for="podcastemail">Podcast Email</label>
<input type="text" id="podcastemail" name="podcastemail">
2017-09-21 23:10:16 +01:00
<label for="podcastdescription">Podcast Description</label>
<textarea name="" id="podcastdescription" name="podcastdescription" cols="75" rows="5"></textarea>
<input type="submit" value="Submit">
2017-09-21 23:10:16 +01:00
</form>
</body>
</html>