You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
624 B
HTML

<html>
<head>
<style>
img{
max-width: 25%;
transition: transform 1s ease-in-out;
}
img:hover{
transform: rotate(360deg) scale(200%);
}
body{
color: purple;
}
</style>
</head>
<body>
{% for image in images %}
<img src="{{ image|replace('./','/breadcube/overlap/') }}">
{% endfor %}
<form action="{{ url_for('upload2_file', image=image) }}" method="POST" enctype="multipart/form-data">
<label for="tile">Pick an image to upload:</label>
<input type="file"
id="tile" name="tile" required>
<input type="submit" value="Upload">
</form>
</body>
</html>