pogo/assets/setup.html
gmemstr 35c77899d8 Added JSON encoding to setup
Uses native Go encoding/json package, plan to move config away from spf13/viper and admin login to SQL for multiple user support.
2017-09-22 08:50:03 -07:00

30 lines
800 B
HTML

<!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">
<label for="podcasthost">Podcast Host</label>
<input type="text" id="podcasthost" name="podcasthost">
<label for="podcastemail">Podcast Email</label>
<input type="text" id="podcastemail" name="podcastemail">
<label for="podcastdescription">Podcast Description</label>
<textarea name="" id="podcastdescription" name="podcastdescription" cols="75" rows="5"></textarea>
<input type="submit" value="Submit">
</form>
</body>
</html>