caption/index.html

20 lines
544 B
HTML
Raw Normal View History

2018-03-10 02:15:23 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Caption</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<!-- <script src="main.js"></script> -->
</head>
<body>
2018-03-10 02:44:31 +01:00
<form enctype="multipart/form-data" action="/image" method="post">
2018-03-10 02:15:23 +01:00
<textarea name="text" cols="30" rows="3"></textarea>
<input name="image" type="file">
<input type="submit" value="submit">
</form>
</body>
</html>