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

@ -24,8 +24,8 @@ function respond(){
</form></tr> </form></tr>
<form action="upload.php" method="post" enctype="multipart/form-data" onsubmit="respond()"> <form action="upload.php" method="post" enctype="multipart/form-data" onsubmit="respond()">
<tr> <tr>
<td>Target:</td> <td class="left">Target:</td>
<td> <td class="right">
<select name="target" id="target" required> <select name="target" id="target" required>
<option value="" disabled selected hidden>Streaming Destination</option> <option value="" disabled selected hidden>Streaming Destination</option>
<option value="Restream">Restream</option> <option value="Restream">Restream</option>
@ -37,8 +37,8 @@ function respond(){
<td class="left">Streamkey:</td> <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> <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> <tr>
<td>Date & Time:</td> <td class="left">Date & Time:</td>
<td><input type="datetime-local" name="datetime" title="Click on the date to get a popup" required></td></tr> <td class="right"><input type="datetime-local" name="datetime" title="Click on the date to get a popup" required></td></tr>
<tr> <tr>
<td class="left">Video File:</td> <td class="left">Video File:</td>
<td class="right"><input type="file" name="file" required accept=".mp4"></td></tr> <td class="right"><input type="file" name="file" required accept=".mp4"></td></tr>

View File

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