Spaces:
Sleeping
Sleeping
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Image Interpolation</title> | |
</head> | |
<body> | |
<h1>Upload Two Image URLs</h1> | |
<form method="post" action="/"> | |
<label for="img1_url">Image 1 URL:</label> | |
<input type="url" id="img1_url" name="img1_url" required> | |
<br><br> | |
<label for="img2_url">Image 2 URL:</label> | |
<input type="url" id="img2_url" name="img2_url" required> | |
<br><br> | |
<button type="submit">Interpolate Images</button> | |
</form> | |
</body> | |
</html> |