32 lines
735 B
HTML
32 lines
735 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>File Uploads</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="app">
|
|
|
|
<div class="form-section">
|
|
<form aciton="/api/upload" method="post" enctype="multipart/form-data">
|
|
<input type="file" name="file">
|
|
<input type="submit" name="Upload">
|
|
|
|
</form>
|
|
|
|
<!-- Form will go here -->
|
|
|
|
</div>
|
|
|
|
<div class="images-section">
|
|
|
|
<!-- Images will go here -->
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |