-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
37 lines (34 loc) · 730 Bytes
/
admin.html
File metadata and controls
37 lines (34 loc) · 730 Bytes
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
<!DOCTYPE html>
<html lang= "en">
<head>
<meta charset="UTF-8">
<title>Admin Page</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
#header{
height: 5%;
width: 70%;
}
#title-text{
text-align: center;
color: #FFDF00;
}
html, body {
background: #172697;
height: 100%;
margin: 0;
text-align: center;
color:#FFDF00;
padding: 0;
</style>
</head>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data">
Select file to upload:
<input type="file" name="file" id="fileToUpload">
<input type="submit" name="submit" value="Upload File Now">
</form>
</body>
</html>