blob: ca57d4ffb5989f88687600d6a21b77c3e01dafcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<head>
<title>бирка-тян - Upload File</title>
<link rel="stylesheet" type="text/css" href="/public/css/style.css">
<meta charset="UTF-8">
</head>
<body>
<header>
<h1><a href="/">бирка-тян</a></h1>
</header>
<main>
<h2>Upload a file</h2>
<form id="upload" method="post" action="/api/posts" enctype="multipart/form-data">
<input id="image" name="image" type="file" accept="image/*">
<label for="tags">Tags:</label>
<input id="tags" name="tags" type="text">
<button type="submit">Upload</button>
</form>
</main>
</body>
</html>
|