caption/index.html

27 lines
804 B
HTML

<!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="assets/master.css" />
<!-- <script src="main.js"></script> -->
</head>
<body class="bg">
<div class="center">
<form class="form" enctype="multipart/form-data" action="/image" method="post">
<textarea class="form-item" name="text" cols="30" rows="3"></textarea>
<div class="form-item file-input">
<input name="image" type="file">
<span class="btn">file input</span>
</div>
<input class="form-item btn submit" type="submit" value="submit">
</form>
</div>
</body>
</html>