caption/index.html

33 lines
747 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">
2018-03-10 02:46:12 +01:00
<link rel="stylesheet" type="text/css" media="screen" href="assets/master.css" />
2018-03-10 02:15:23 +01:00
<!-- <script src="main.js"></script> -->
</head>
2018-03-10 02:46:12 +01:00
<body class="bg">
<div class="center">
<form class="form" enctype="multipart/form-data" action="/image" method="post">
<div class="">
<textarea class="text" name="text" cols="30" rows="3"></textarea>
</div>
<div class="">
<input class="" name="image" type="file">
</div>
<div class="">
<input class="" type="submit" value="submit">
</div>
2018-03-10 02:15:23 +01:00
</form>
2018-03-10 02:46:12 +01:00
</div>
2018-03-10 02:15:23 +01:00
</body>
2018-03-10 02:46:12 +01:00
</html>