Saddle/templates/index.html

23 lines
530 B
HTML
Raw Normal View History

2019-10-01 23:06:51 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Saddle</title>
<link rel="stylesheet" type="text/css" href="/static/saddle.css">
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<meta name="description" content="A file upload service.">
</head>
<body>
<header>
<h1>Saddle</h1>
</header>
<main>
2019-10-02 18:44:06 -04:00
<section>
<form method="POST" enctype="multipart/form-data">
<input type="file" name="files" multiple>
<input type="submit">
</form>
</section>
2019-10-01 23:06:51 -04:00
</main>
</body>
</html>