forked from DomBottom/module2-group-475438-474014
-
Notifications
You must be signed in to change notification settings - Fork 0
/
upload.html
37 lines (33 loc) · 933 Bytes
/
upload.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
<!DOCTYPE html>
<html>
<head>
<title>My Files</title>
</head>
<body>
<center>
<h2> View My Files</h2>
<!--view my file button, direct users to list.php page, showing all their files-->
<form action="list.php" method="POST">
<input type="submit" value="My Files" />
</form>
<h2> Upload New Files</h2>
<!--upload newfile function, allow users to choose file from local directory and upload to server-->
<form enctype="multipart/form-data" action="upload.php" method="POST">
<p>
<input type="hidden" name="MAX_FILE_SIZE" value="20000000" />
<label for="uploadfile_input">Choose a file to upload:</label>
<input name="uploadedfile" type="file" id="uploadfile_input" />
</p>
<p>
<input type="submit" value="Upload File" />
</p>
</form>
<!-- logout function-->
<form action="logout.php" method="POST">
<p><br><br>
<input type="submit" value="Logout" />
</p>
</form>
</center>
</body>
</html>