beerds/server/index.html

18 lines
531 B
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Определение породы собаки по фото</title>
</head>
<body>
<form enctype="multipart/form-data" method="post" action="/beeds" onsubmit="SavePhoto();return false">
<p><input type="file" name="f" id="file-input">
<input type="submit" value="Отправить"></p>
</form>
<div id="result"></div>
<img id="image" />
</body>
<script src="static/scripts.js"></script>
</html>