pogo/assets/admin.html

29 lines
828 B
HTML
Raw Normal View History

2017-07-15 16:15:02 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WR Publish</title>
2017-07-15 16:15:02 +01:00
<link rel="stylesheet" href="/assets/styles.css">
</head>
<body>
<h1>White Rabbit Publish</h1>
2017-07-15 16:15:02 +01:00
<form enctype="multipart/form-data" action="/admin/publish" method="post">
<label for="title">Episode Title</label>
<input type="text" id="title" name="title">
<label for="description">Episode Description</label>
<textarea name="description" id="description" cols="50" rows="10" style="resize: none;"></textarea>
<label for="file">Media File</label>
<input type="file" id="file" name="file">
<label for="date">Publish Date</label>
<input type="date" id="date" name="date">
<input type="submit" value="Publish">
</form>
2017-07-15 16:15:02 +01:00
<footer>
<p>White Rabbit licensed under the GPLv3</p>
</footer>
</body>
</html>