Furdockgr1 / static /index.html
Ashrafb's picture
Create static/index.html
02b0218 verified
raw history blame
No virus
1.09 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aiconvert.online</title>
</head>
<body>
<h1 style="color: crimson;">Aiconvert.online</h1>
<form action="/process_image/" method="post" enctype="multipart/form-data">
<label for="image">Select an image:</label><br>
<input type="file" id="image" name="file" accept="image/*"><br><br>
<label for="version">Choose a version:</label><br>
<input type="radio" id="v1.2" name="version" value="v1.2" checked>
<label for="v1.2">v1.2</label><br>
<input type="radio" id="v1.3" name="version" value="v1.3">
<label for="v1.3">v1.3</label><br>
<input type="radio" id="v1.4" name="version" value="v1.4">
<label for="v1.4">v1.4</label><br><br>
<label for="scale">Enter upscaling factor:</label><br>
<input type="number" id="scale" name="scale" value="2" min="1"><br><br>
<input type="submit" value="Process Image">
</form>
</body>
</html>