-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpost_create
More file actions
25 lines (23 loc) · 821 Bytes
/
post_create
File metadata and controls
25 lines (23 loc) · 821 Bytes
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
<h1>Create Post</h1>
<div class="card !p-8">
<div class="flex items-center mb-6">
<img class="h-5 object-cover mr-1" src="https://img.icons8.com/small/96/333333/search--v1.png"/>
<a href="https://www.flickr.com/explore" target="_blank" class="hover:underline text-gray-500">Find an image on Flickr</a>
</div>
<form method='POST'>
<p>
<label>Image:</label>
<input required="" >
</p>
<p>
<label for="id_title">Title:</label>
<input required="" >
</p>
<p>
<label for="id_artist">Artist:</label>
<input required="" >
</p>
<button type="submit" class="mt-1">Submit Post</button>
<a class="button secondaryAction ml-1" href="">Cancel</a>
</form>
</div>