diff --git a/uploadpage/index.php b/uploadpage/index.php
index ca96224..e20ce19 100755
--- a/uploadpage/index.php
+++ b/uploadpage/index.php
@@ -26,8 +26,8 @@ function filename(){
Stream Upload
');
diff --git a/uploadpage/page.css b/uploadpage/page.css
index 8fc0b1f..1600406 100755
--- a/uploadpage/page.css
+++ b/uploadpage/page.css
@@ -84,6 +84,22 @@ input[type=submit] {
position:relative;
max-width:fit-content(325px);
}
+.datetime {
+ display:flex;
+ flex-direction:rows;
+ text-align:center;
+ space-between;
+}
+input[type=date] {
+ width:56%;
+ padding-left:0;
+ padding-right:0;
+}
+input[type=time] {
+ width:40%;
+ padding-left:0;
+ padding-right:0;
+}
#name {
padding-top:5px;
font-weight:bold;
diff --git a/uploadpage/upload.php b/uploadpage/upload.php
index cfe363c..cfb7f28 100755
--- a/uploadpage/upload.php
+++ b/uploadpage/upload.php
@@ -8,7 +8,7 @@ if(!isset($_POST['schedule'])){ // If not post: start again
function Back($msg){
print(''.$msg.'
');
exit;
}