Delete static/index.html
Browse files- static/index.html +0 -20
static/index.html
DELETED
@@ -1,20 +0,0 @@
|
|
1 |
-
<!DOCTYPE html>
|
2 |
-
<html>
|
3 |
-
<head>
|
4 |
-
<title>Face Swapper App</title>
|
5 |
-
</head>
|
6 |
-
<body>
|
7 |
-
<h1>Face Swapper App</h1>
|
8 |
-
<form action="/swap_faces/" method="post" enctype="multipart/form-data">
|
9 |
-
<h2>Upload Source Image</h2>
|
10 |
-
<input type="file" name="source_file" accept="image/*" required><br>
|
11 |
-
<label>Source Face Position:</label>
|
12 |
-
<input type="number" name="source_face_index" min="1" required><br> <!-- Remove the 'value' attribute -->
|
13 |
-
<h2>Upload Destination Image</h2>
|
14 |
-
<input type="file" name="destination_file" accept="image/*" required><br>
|
15 |
-
<label>Destination Face Position:</label>
|
16 |
-
<input type="number" name="destination_face_index" min="1" required><br> <!-- Remove the 'value' attribute -->
|
17 |
-
<button type="submit">Swap Faces</button>
|
18 |
-
</form>
|
19 |
-
</body>
|
20 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|