36 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Post Content</title>
<link href="/static/css/bootstrap.css" rel=stylesheet>
</head>
<body>
<div class="container">
<div class="row">
<form enctype="multipart/form-data" method="POST" action="/post/">
<div class="form-group">
<label for="title">Title</label>
<input type="text" class="form-control" name="title" placeholder="Title">
</div>
<div class="form-group">
<label for="subtitle">Subtitle</label>
<input type="text" class="form-control" name="subtitle" placeholder="Subtitle">
</div>
<div class="form-group">
<label for="description">Description</label>
<input type="text" class="form-control" name="description" placeholder="Description">
</div>
<div class="form-group">
<label for="media">Media</label>
<input type="file" class="form-control-file" name="media">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
<script src="/static/js/bootstrap.js"></script>
</body>
</html>