Added wrapper in step 2

This commit is contained in:
Verena Schulz
2025-12-17 15:21:17 +01:00
parent 145f91f091
commit 958c9368d0
2 changed files with 22 additions and 12 deletions
+15 -10
View File
@@ -57,23 +57,28 @@
</div>
<div class="step" id="step2" style="display:none;">
<div class="labelDiv" id="labelDiv">
<div class="KI-wrap">
<label id="labelKI">Select ki:</label>
<label id="labelTranscription">Select transcription:</label>
<label id="labelType">Select type:</label>
<label id="labelLanguage">Select language:</label>
<img id="labelLanguageFlag" src="flags/united-kingdom-flag-png-large.jpg" width="20" height="10" >
<select name="ai_type" id="ai_type"></select>
</div>
<div class="dropdownMenus" id="dropdownMenus">
<select name="ai_type" id="ai_type">
</select>
<select name="transkript_type" id="transkript_type">
</select>
<div class="transcript-wrap">
<label id="labelTranscription">Select transcription:</label>
<select name="transkript_type" id="transkript_type"></select>
</div>
<div class="type-wrapper">
<label id="labelType">Select type:</label>
<select name="output_type" id="output_type">
<option value="pdf">.pdf</option>
<option value="word">.word</option>
<option value="txt">.txt</option>
</select>
</div>
<div class="language-wrapper">
<label id="labelLanguage">Select language:</label>
<img id="labelLanguageFlag" src="flags/united-kingdom-flag-png-large.jpg" width="20" height="10" >
<select name="language_option" id="language_option">
</select>
</div>
+6 -1
View File
@@ -17,7 +17,6 @@ body {
transform: translate(-50%, -50%);
margin: 0;
z-index: 20;
}
#h1-wrapper {
@@ -109,6 +108,12 @@ body {
background-color: #0056b3;
}
#step2 {
display: flex;
justify-content: center;
gap: 30px;
}
input[type="file"] {
display: none;
}