-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhome.html
40 lines (39 loc) · 1.42 KB
/
home.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<title>File Upload</title>
</head>
<body>
<main style="margin:20%">
<div style="margin: auto">
<h1>S3 File Upload</h1>
<form action="{{url_for('s3_upload')}}" method="post" style="margin:5px 5px" enctype="multipart/form-data">
<div style="margin: 5px 0">
<input type="file" name="file">
</div>
<button type="submit" style="display: bloc">Upload</button>
</form>
</div>
<div style="margin: auto">
<h1>Local File Upload</h1>
<form action="{{url_for('local_upload')}}" method="post" style="margin:5px 5px"
enctype="multipart/form-data">
<div style="margin: 5px 0">
<input type="file" name="files" multiple>
</div>
<button type="submit" style="display: bloc">Upload</button>
</form>
</div>
<div style="margin: auto">
<h1>Memory File Upload</h1>
<form action="{{url_for('memory_upload')}}" method="post" style="margin:5px 5px"
enctype="multipart/form-data">
<div style="margin: 5px 0">
<input type="file" name="file">
</div>
<button type="submit" style="display: bloc">Upload</button>
</form>
</div>
</main>
</body>
</html>