blob: d0d2e8114167bbf250554f71ff844b8208298c27 (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
|
<!doctype html>
<html lang="en">
<head>
<title>Mark's Kitchen - Admin</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="/css/styles.css">
</head>
<body>
<div>
<h1>Create Post</h1>
<div class="form">
<form action="/posts" method="post" enctype="multipart/form-data">
<div>
<textarea rows="4" cols="50" name="description"></textarea>
</div>
<div>
Images: <input type="file" name="images" multiple>
</div>
<div>
<select name="type">
<option value="" disabled selected>Select...</option>
<option value="bread">Bread</option>
<option value="index">Index</option>
</select>
</div>
<input type="submit" value="Submit">
</form>
</div>
</div>
</body>
</html>
|