This commit is contained in:
gitlab.com/pepa65 2022-09-13 12:36:06 +07:00
parent 78d8e76879
commit 0d35ef8c54
2 changed files with 14 additions and 14 deletions

View File

@ -15,17 +15,17 @@ function respond(){
<div class="container">
<div class="incontainer">
<table>
<tr><td></td><td align="center"><h1>Stream Upload</h1></td></tr>
<tr>
<td class="left">User:</td>
<td class="right"><b>'.$user.'</b></td>
<form action="check.php" method="post">
<td><input class="shiftleft" type="submit" name="logoff" value="Logoff"></td>
</form></tr>
<tr><td></td><td align="center"><h1>Stream Upload</h1></td></tr>
<tr>
<td class="left">User:</td>
<td class="right"><b>'.$user.'</b></td>
<form action="check.php" method="post">
<td><input class="shiftleft" type="submit" name="logoff" value="Logoff"></td>
</form></tr>
<form action="upload.php" method="post" enctype="multipart/form-data" onsubmit="respond()">
<tr>
<td>Target:</td>
<td>
<td class="left">Target:</td>
<td class="right">
<select name="target" id="target" required>
<option value="" disabled selected hidden>Streaming Destination</option>
<option value="Restream">Restream</option>
@ -37,8 +37,8 @@ function respond(){
<td class="left">Streamkey:</td>
<td class="right"><input type="text" name="streamkey" required title="string of 0-9, a-z, A-Z, underscore or dash characters" pattern="[a-zA-Z0-9_-]+"></td></tr>
<tr>
<td>Date & Time:</td>
<td><input type="datetime-local" name="datetime" title="Click on the date to get a popup" required></td></tr>
<td class="left">Date & Time:</td>
<td class="right"><input type="datetime-local" name="datetime" title="Click on the date to get a popup" required></td></tr>
<tr>
<td class="left">Video File:</td>
<td class="right"><input type="file" name="file" required accept=".mp4"></td></tr>

View File

@ -33,8 +33,8 @@ body {
height:100vh;
}
.incontainer {
width:525px;
max-width:450px;
width:550px;
max-width:550px;
}
p {
flex-wrap:nowrap;
@ -53,7 +53,7 @@ table {
width:325px;
}
.left {
width:200px;
width:225px;
padding-right:10px;
text-align:right;
}