mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
Integrated the help page into the base files and added more exception handling
This commit is contained in:
@@ -17,302 +17,18 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ===== CONTAINER ===== */
|
|
||||||
.container {
|
|
||||||
background: white;
|
|
||||||
width: 90%;
|
|
||||||
max-width: 800px;
|
|
||||||
height: 85vh;
|
|
||||||
/* feste Höhe */
|
|
||||||
border-radius: 12px;
|
|
||||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ===== FIXER TOP-BEREICH ===== */
|
|
||||||
.top-bar {
|
|
||||||
padding: 15px 20px;
|
|
||||||
border-bottom: 1px solid #eee;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Buttons */
|
|
||||||
.back-btn,
|
|
||||||
.toc-toggle {
|
|
||||||
background: #007BFF;
|
|
||||||
color: white;
|
|
||||||
border: none;
|
|
||||||
padding: 8px 14px;
|
|
||||||
border-radius: 6px;
|
|
||||||
cursor: pointer;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.back-btn:hover,
|
|
||||||
.toc-toggle:hover {
|
|
||||||
background: #0056b3;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ===== TOC ===== */
|
|
||||||
.toc-wrapper {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.toc {
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
top: 45px;
|
|
||||||
background: white;
|
|
||||||
border-radius: 8px;
|
|
||||||
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
|
|
||||||
padding: 10px;
|
|
||||||
min-width: 220px;
|
|
||||||
display: none;
|
|
||||||
z-index: 5;
|
|
||||||
}
|
|
||||||
|
|
||||||
.toc a {
|
|
||||||
display: block;
|
|
||||||
padding: 8px 10px;
|
|
||||||
color: #007BFF;
|
|
||||||
text-decoration: none;
|
|
||||||
border-radius: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.toc a:hover {
|
|
||||||
background: #f0f2f5;
|
|
||||||
}
|
|
||||||
|
|
||||||
.toc.show {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ===== SCROLLBEREICH ===== */
|
|
||||||
.content {
|
|
||||||
padding: 30px;
|
|
||||||
overflow-y: auto;
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Inhalt */
|
|
||||||
h1 {
|
|
||||||
text-align: center;
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.step {
|
|
||||||
margin-bottom: 20px;
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.step h2 {
|
|
||||||
color: #0056b3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.step h3 {
|
|
||||||
color: #555;
|
|
||||||
margin-bottom: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.step p {
|
|
||||||
color: #555;
|
|
||||||
line-height: 1.6;
|
|
||||||
}
|
|
||||||
|
|
||||||
.step img {
|
|
||||||
width: 100%;
|
|
||||||
max-height: 350px;
|
|
||||||
object-fit: contain;
|
|
||||||
border-radius: 8px;
|
|
||||||
margin-top: 15px;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
<!-- FIXER OBERER TEIL -->
|
|
||||||
<div class="top-bar">
|
|
||||||
<a href="index.html">
|
|
||||||
<button class="back-btn">Zurück</button>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<h1>Programm Anleitung</h1>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="toc-wrapper">
|
|
||||||
<button class="toc-toggle" onclick="toggleTOC()">Inhaltsverzeichnis</button>
|
|
||||||
<div class="toc" id="toc">
|
|
||||||
<a href="#convertVid" id='hp_convertVid' onclick="closeTOC()">Video zu Dokument umwandeln</a>
|
|
||||||
<a href="#firstStep" id='hp_firstStep' onclick="closeTOC()">Schritt 1 - Video auswählen</a>
|
|
||||||
<a href="#secondStep" id='hp_secondStep' onclick="closeTOC()">Schritt 2 - Konfiguration</a>
|
|
||||||
<a href="#thirdStep" id='hp_thirdStep' onclick="closeTOC()">Schritt 3 - Dokumententyp auswählen</a>
|
|
||||||
<a href="#fourthStep" id='hp_fourthStep' onclick="closeTOC()">Schritt 4 - Bestätigen</a>
|
|
||||||
<a href="#fifthStep" id='hp_fifthStep' onclick="closeTOC()">Schritt 5 - Sprecher identifizieren</a>
|
|
||||||
<a href="#sixthStep" id='hp_sixthStep' onclick="closeTOC()">Schritt 6 - Dokument speichern</a>
|
|
||||||
<a href="#createDoc" id='hp_createDoc' onclick="closeTOC()">Dokumententyp erstellen</a>
|
|
||||||
<a href="#editDoc" id='hp_editDoc' onclick="closeTOC()">Dokumententyp bearbeiten</a>
|
|
||||||
<a href="#deleteDoc" id='hp_deleteDoc' onclick="closeTOC()">Dokumententyp löschen</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- NUR DIESER TEIL SCROLLT -->
|
|
||||||
<div class="content">
|
|
||||||
|
|
||||||
<div class="step" id="convertVid">
|
|
||||||
<h2 id="hp_convertVid_h2">Video zu Dokument umwandeln.</h2>
|
|
||||||
|
|
||||||
<div class="step" id="firstStep">
|
|
||||||
<h3 id="hp_firstStep_h3">Schritt 1 - Video auswählen</h3>
|
|
||||||
<p id="hp_firstStep_p">
|
|
||||||
- Ziehe eine Videodatei in das Drag-and-Drop-Feld oder klicke auf <strong>„Video
|
|
||||||
suchen“</strong>,<br>
|
|
||||||
um eine Datei über deinen Dateibrowser auszuwählen.<br>
|
|
||||||
- Klicke anschließend auf <strong>Schritt 2</strong> oder auf den blauen Pfeil rechts, um
|
|
||||||
fortzufahren.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="step" id="secondStep">
|
|
||||||
<h3 id="hp_secondStep_h3">Schritt 2 - Konfiguration</h3>
|
|
||||||
<p id="hp_secondStep_p">
|
|
||||||
- Wähle im ersten Auswahlmenü die zu verwendende <strong>KI</strong>.<br>
|
|
||||||
- Wähle im zweiten Auswahlmenü das zu verwendende <strong>Transkriptions-Tool</strong>.<br>
|
|
||||||
- Wähle im dritten Auswahlmenü das <strong>Dateiformat</strong> des zu erstellenden
|
|
||||||
Dokuments.<br>
|
|
||||||
- Wähle im vierten Auswahlmenü die <strong>Sprache</strong> des zu erstellenden Dokuments.<br>
|
|
||||||
- Klicke anschließend auf <strong>Schritt 3</strong> oder auf den blauen Pfeil rechts, um
|
|
||||||
fortzufahren.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="step" id="thirdStep">
|
|
||||||
<h3 id="hp_thirdStep_h3">Schritt 3 - Dokumententyp auswählen</h3>
|
|
||||||
<p id="hp_thirdStep_p">
|
|
||||||
- Wähle einen Dokumententyp über die Checkbox oder einen zuvor erstellten Dokumententyp aus dem
|
|
||||||
Dropdown-Menü aus.<br>
|
|
||||||
- Klicke anschließend auf <strong>Schritt 4</strong> oder auf den blauen Pfeil rechts, um
|
|
||||||
fortzufahren.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="step" id="fourthStep">
|
|
||||||
<h3 id="hp_fourthStep_h3">Schritt 4 - Bestätigen</h3>
|
|
||||||
<p id="hp_fourthStep_p">
|
|
||||||
Klicke auf <strong>„Submit“</strong>, um die Dokumentengenerierung zu starten.<br>
|
|
||||||
Während der Verarbeitung werden vier Statuspunkte angezeigt, die sich schrittweise von rot zu
|
|
||||||
grün färben und den aktuellen Fortschritt darstellen:
|
|
||||||
<br><br>
|
|
||||||
Punkt 1: Upload und Vorbereitung der Videodatei.<br>
|
|
||||||
Punkt 2: Transkription des Videoinhalts.<br>
|
|
||||||
Punkt 3: KI-gestützte Verarbeitung und Dokumentenerstellung.<br>
|
|
||||||
Punkt 4: Abschluss der Generierung und Bereitstellung des Dokuments.
|
|
||||||
<br><br>
|
|
||||||
Nach erfolgreichem Abschluss klicke auf <strong>Schritt 5</strong> oder auf den blauen Pfeil
|
|
||||||
rechts, um fortzufahren.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="step" id="fifthStep">
|
|
||||||
<h3 id="hp_fifthStep_h3">Schritt 5 - Sprecher identifizieren</h3>
|
|
||||||
<p id="hp_fifthStep_p">
|
|
||||||
Im Auswahlmenü kannst du einen erkannten Sprecher auswählen.<br>
|
|
||||||
Über den Play-Button lässt sich ein gesprochener Satz anhören, um den Sprecher eindeutig zu
|
|
||||||
identifizieren.<br>
|
|
||||||
Mit dem Lautsprecher-Symbol kannst du die Lautstärke anpassen.<br>
|
|
||||||
Über das Drei-Punkte-Menü lässt sich die Wiedergabegeschwindigkeit einstellen.<br><br>
|
|
||||||
|
|
||||||
Im Textfeld <strong>„Write name“</strong> gibst du den tatsächlichen Namen des Sprechers ein,
|
|
||||||
damit dieser im Dokument
|
|
||||||
anstelle von Platzhaltern wie z. B. „Sprecher A“ angezeigt wird.<br>
|
|
||||||
Bestätige die Eingabe mit <strong>„Rename Speaker“</strong>.<br><br>
|
|
||||||
|
|
||||||
Mit dem Button <strong>„Rewrite Document“</strong> werden anschließend alle
|
|
||||||
Sprecherbezeichnungen im Dokument ersetzt.<br><br>
|
|
||||||
|
|
||||||
Klicke danach auf <strong>Schritt 6</strong> oder auf den blauen Pfeil rechts, um fortzufahren.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="step" id="sixthStep">
|
|
||||||
<h3 id="hp_sixthStep_h3">Schritt 6 - Dokument speichern</h3>
|
|
||||||
<p id="hp_sixthStep_p">
|
|
||||||
Klicke auf <strong>„Download“</strong>, um das Dokument zu speichern.<br>
|
|
||||||
Es öffnet sich anschließend ein Dateiexplorer, in dem du den gewünschten Speicherort auswählen
|
|
||||||
kannst.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="step" id="createDoc">
|
|
||||||
<h2 id="hp_createDoc_h2">Dokumententyp erstellen</h2>
|
|
||||||
<p id="hp_createDoc_p">
|
|
||||||
- Öffne oben links das Burgermenü und wähle den Punkt <strong>„Dokumententypen
|
|
||||||
verwalten“</strong>.<br>
|
|
||||||
- Wähle anschließend im Auswahlmenü die Option <strong>„-- Neuen Dokumententyp erstellen
|
|
||||||
--“</strong>.<br>
|
|
||||||
- Vergib einen aussagekräftigen Namen für den neuen Dokumententyp.<br>
|
|
||||||
- Formuliere den Prompt für die KI-gestützte Verarbeitung sorgfältig.<br>
|
|
||||||
- Klicke auf <strong>Dokumententyp speichern</strong>.<br><br>
|
|
||||||
<strong>Hinweis:</strong> <br>Der eingegebene Prompt wird unverändert an einen KI-Dienst
|
|
||||||
übermittelt.
|
|
||||||
Achte daher unbedingt auf die Einhaltung der geltenden Datenschutzrichtlinien und gib keine
|
|
||||||
sensiblen oder personenbezogenen Daten ein.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="step" id="editDoc">
|
|
||||||
<h2 id="hp_editDoc_h2">Dokumententyp bearbeiten</h2>
|
|
||||||
<p id="hp_editDoc_p">
|
|
||||||
- Öffne oben links das Burgermenü und wähle den Punkt <strong>„Dokumententypen
|
|
||||||
verwalten“</strong>.<br>
|
|
||||||
- Wähle anschließend im Auswahlmenü den zu bearbeitenden Dokumententyp aus.<br>
|
|
||||||
- Überarbeite den bestehenden KI-Prompt oder formuliere einen neuen Prompt.<br>
|
|
||||||
- Klicke abschließend auf <strong>„Dokumententyp speichern“</strong>.<br><br>
|
|
||||||
|
|
||||||
<strong>Hinweis:</strong><br>
|
|
||||||
Der eingegebene Prompt wird unverändert an einen KI-Dienst übermittelt.
|
|
||||||
Achte daher unbedingt auf die Einhaltung der geltenden Datenschutzrichtlinien und gib keine
|
|
||||||
sensiblen oder personenbezogenen Daten ein.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="step" id="deleteDoc">
|
|
||||||
<h2 id="hp_deleteDoc_h2">Dokumententyp löschen</h2>
|
|
||||||
<p id="hp_deleteDoc_p"> - Öffne oben links das Burgermenü und wähle den Punkt <strong>„Dokumententypen
|
|
||||||
verwalten“</strong>.<br>
|
|
||||||
- Wähle anschließend im Auswahlmenü den zu löschenden Dokumententyp aus.<br>
|
|
||||||
- Klicke abschließend auf <strong>„Dokumententyp löschen“</strong>.<br><br>
|
|
||||||
|
|
||||||
<strong>Hinweis:</strong><br>
|
|
||||||
Nach Bestätigung des Löschvorgangs kann der Dokumententyp nicht wiederhergestellt werden.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
function toggleTOC() {
|
|
||||||
document.getElementById("toc").classList.toggle("show");
|
|
||||||
}
|
|
||||||
|
|
||||||
function closeTOC() {
|
|
||||||
document.getElementById("toc").classList.remove("show");
|
|
||||||
}
|
|
||||||
|
|
||||||
document.addEventListener("click", function (e) {
|
|
||||||
const toc = document.getElementById("toc");
|
|
||||||
const toggle = document.querySelector(".toc-toggle");
|
|
||||||
|
|
||||||
if (!toc.contains(e.target) && !toggle.contains(e.target)) {
|
|
||||||
toc.classList.remove("show");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -90,6 +90,167 @@
|
|||||||
<div id="result"></div>
|
<div id="result"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Here starts code from the helppage -->
|
||||||
|
|
||||||
|
<div class="container" style="display: none">
|
||||||
|
<!-- FIXER OBERER TEIL -->
|
||||||
|
<div class="top-bar">
|
||||||
|
<a href="index.html">
|
||||||
|
<button class="back-btn">Zurück</button>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<h1>Programm Anleitung</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="toc-wrapper">
|
||||||
|
<button class="toc-toggle" onclick="toggleTOC()">Inhaltsverzeichnis</button>
|
||||||
|
<div class="toc" id="toc">
|
||||||
|
<a href="#convertVid" id='hp_convertVid' onclick="closeTOC()">Video zu Dokument umwandeln</a>
|
||||||
|
<a href="#firstStep" id='hp_firstStep' onclick="closeTOC()">Schritt 1 - Video auswählen</a>
|
||||||
|
<a href="#secondStep" id='hp_secondStep' onclick="closeTOC()">Schritt 2 - Konfiguration</a>
|
||||||
|
<a href="#thirdStep" id='hp_thirdStep' onclick="closeTOC()">Schritt 3 - Dokumententyp auswählen</a>
|
||||||
|
<a href="#fourthStep" id='hp_fourthStep' onclick="closeTOC()">Schritt 4 - Bestätigen</a>
|
||||||
|
<a href="#fifthStep" id='hp_fifthStep' onclick="closeTOC()">Schritt 5 - Sprecher identifizieren</a>
|
||||||
|
<a href="#sixthStep" id='hp_sixthStep' onclick="closeTOC()">Schritt 6 - Dokument speichern</a>
|
||||||
|
<a href="#createDoc" id='hp_createDoc' onclick="closeTOC()">Dokumententyp erstellen</a>
|
||||||
|
<a href="#editDoc" id='hp_editDoc' onclick="closeTOC()">Dokumententyp bearbeiten</a>
|
||||||
|
<a href="#deleteDoc" id='hp_deleteDoc' onclick="closeTOC()">Dokumententyp löschen</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- NUR DIESER TEIL SCROLLT -->
|
||||||
|
<div class="content">
|
||||||
|
|
||||||
|
<div class="step" id="convertVid">
|
||||||
|
<h2 id="hp_convertVid_h2">Video zu Dokument umwandeln.</h2>
|
||||||
|
|
||||||
|
<div class="step" id="firstStep">
|
||||||
|
<h3 id="hp_firstStep_h3">Schritt 1 - Video auswählen</h3>
|
||||||
|
<p id="hp_firstStep_p">
|
||||||
|
- Ziehe eine Videodatei in das Drag-and-Drop-Feld oder klicke auf <strong>„Video
|
||||||
|
suchen“</strong>,<br>
|
||||||
|
um eine Datei über deinen Dateibrowser auszuwählen.<br>
|
||||||
|
- Klicke anschließend auf <strong>Schritt 2</strong> oder auf den blauen Pfeil rechts, um
|
||||||
|
fortzufahren.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="step" id="secondStep">
|
||||||
|
<h3 id="hp_secondStep_h3">Schritt 2 - Konfiguration</h3>
|
||||||
|
<p id="hp_secondStep_p">
|
||||||
|
- Wähle im ersten Auswahlmenü die zu verwendende <strong>KI</strong>.<br>
|
||||||
|
- Wähle im zweiten Auswahlmenü das zu verwendende <strong>Transkriptions-Tool</strong>.<br>
|
||||||
|
- Wähle im dritten Auswahlmenü das <strong>Dateiformat</strong> des zu erstellenden
|
||||||
|
Dokuments.<br>
|
||||||
|
- Wähle im vierten Auswahlmenü die <strong>Sprache</strong> des zu erstellenden Dokuments.<br>
|
||||||
|
- Klicke anschließend auf <strong>Schritt 3</strong> oder auf den blauen Pfeil rechts, um
|
||||||
|
fortzufahren.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="step" id="thirdStep">
|
||||||
|
<h3 id="hp_thirdStep_h3">Schritt 3 - Dokumententyp auswählen</h3>
|
||||||
|
<p id="hp_thirdStep_p">
|
||||||
|
- Wähle einen Dokumententyp über die Checkbox oder einen zuvor erstellten Dokumententyp aus dem
|
||||||
|
Dropdown-Menü aus.<br>
|
||||||
|
- Klicke anschließend auf <strong>Schritt 4</strong> oder auf den blauen Pfeil rechts, um
|
||||||
|
fortzufahren.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="step" id="fourthStep">
|
||||||
|
<h3 id="hp_fourthStep_h3">Schritt 4 - Bestätigen</h3>
|
||||||
|
<p id="hp_fourthStep_p">
|
||||||
|
Klicke auf <strong>„Submit“</strong>, um die Dokumentengenerierung zu starten.<br>
|
||||||
|
Während der Verarbeitung werden vier Statuspunkte angezeigt, die sich schrittweise von rot zu
|
||||||
|
grün färben und den aktuellen Fortschritt darstellen:
|
||||||
|
<br><br>
|
||||||
|
Punkt 1: Upload und Vorbereitung der Videodatei.<br>
|
||||||
|
Punkt 2: Transkription des Videoinhalts.<br>
|
||||||
|
Punkt 3: KI-gestützte Verarbeitung und Dokumentenerstellung.<br>
|
||||||
|
Punkt 4: Abschluss der Generierung und Bereitstellung des Dokuments.
|
||||||
|
<br><br>
|
||||||
|
Nach erfolgreichem Abschluss klicke auf <strong>Schritt 5</strong> oder auf den blauen Pfeil
|
||||||
|
rechts, um fortzufahren.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="step" id="fifthStep">
|
||||||
|
<h3 id="hp_fifthStep_h3">Schritt 5 - Sprecher identifizieren</h3>
|
||||||
|
<p id="hp_fifthStep_p">
|
||||||
|
Im Auswahlmenü kannst du einen erkannten Sprecher auswählen.<br>
|
||||||
|
Über den Play-Button lässt sich ein gesprochener Satz anhören, um den Sprecher eindeutig zu
|
||||||
|
identifizieren.<br>
|
||||||
|
Mit dem Lautsprecher-Symbol kannst du die Lautstärke anpassen.<br>
|
||||||
|
Über das Drei-Punkte-Menü lässt sich die Wiedergabegeschwindigkeit einstellen.<br><br>
|
||||||
|
|
||||||
|
Im Textfeld <strong>„Write name“</strong> gibst du den tatsächlichen Namen des Sprechers ein,
|
||||||
|
damit dieser im Dokument
|
||||||
|
anstelle von Platzhaltern wie z. B. „Sprecher A“ angezeigt wird.<br>
|
||||||
|
Bestätige die Eingabe mit <strong>„Rename Speaker“</strong>.<br><br>
|
||||||
|
|
||||||
|
Mit dem Button <strong>„Rewrite Document“</strong> werden anschließend alle
|
||||||
|
Sprecherbezeichnungen im Dokument ersetzt.<br><br>
|
||||||
|
|
||||||
|
Klicke danach auf <strong>Schritt 6</strong> oder auf den blauen Pfeil rechts, um fortzufahren.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="step" id="sixthStep">
|
||||||
|
<h3 id="hp_sixthStep_h3">Schritt 6 - Dokument speichern</h3>
|
||||||
|
<p id="hp_sixthStep_p">
|
||||||
|
Klicke auf <strong>„Download“</strong>, um das Dokument zu speichern.<br>
|
||||||
|
Es öffnet sich anschließend ein Dateiexplorer, in dem du den gewünschten Speicherort auswählen
|
||||||
|
kannst.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="step" id="createDoc">
|
||||||
|
<h2 id="hp_createDoc_h2">Dokumententyp erstellen</h2>
|
||||||
|
<p id="hp_createDoc_p">
|
||||||
|
- Öffne oben links das Burgermenü und wähle den Punkt <strong>„Dokumententypen
|
||||||
|
verwalten“</strong>.<br>
|
||||||
|
- Wähle anschließend im Auswahlmenü die Option <strong>„-- Neuen Dokumententyp erstellen
|
||||||
|
--“</strong>.<br>
|
||||||
|
- Vergib einen aussagekräftigen Namen für den neuen Dokumententyp.<br>
|
||||||
|
- Formuliere den Prompt für die KI-gestützte Verarbeitung sorgfältig.<br>
|
||||||
|
- Klicke auf <strong>Dokumententyp speichern</strong>.<br><br>
|
||||||
|
<strong>Hinweis:</strong> <br>Der eingegebene Prompt wird unverändert an einen KI-Dienst
|
||||||
|
übermittelt.
|
||||||
|
Achte daher unbedingt auf die Einhaltung der geltenden Datenschutzrichtlinien und gib keine
|
||||||
|
sensiblen oder personenbezogenen Daten ein.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="step" id="editDoc">
|
||||||
|
<h2 id="hp_editDoc_h2">Dokumententyp bearbeiten</h2>
|
||||||
|
<p id="hp_editDoc_p">
|
||||||
|
- Öffne oben links das Burgermenü und wähle den Punkt <strong>„Dokumententypen
|
||||||
|
verwalten“</strong>.<br>
|
||||||
|
- Wähle anschließend im Auswahlmenü den zu bearbeitenden Dokumententyp aus.<br>
|
||||||
|
- Überarbeite den bestehenden KI-Prompt oder formuliere einen neuen Prompt.<br>
|
||||||
|
- Klicke abschließend auf <strong>„Dokumententyp speichern“</strong>.<br><br>
|
||||||
|
|
||||||
|
<strong>Hinweis:</strong><br>
|
||||||
|
Der eingegebene Prompt wird unverändert an einen KI-Dienst übermittelt.
|
||||||
|
Achte daher unbedingt auf die Einhaltung der geltenden Datenschutzrichtlinien und gib keine
|
||||||
|
sensiblen oder personenbezogenen Daten ein.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="step" id="deleteDoc">
|
||||||
|
<h2 id="hp_deleteDoc_h2">Dokumententyp löschen</h2>
|
||||||
|
<p id="hp_deleteDoc_p"> - Öffne oben links das Burgermenü und wähle den Punkt <strong>„Dokumententypen
|
||||||
|
verwalten“</strong>.<br>
|
||||||
|
- Wähle anschließend im Auswahlmenü den zu löschenden Dokumententyp aus.<br>
|
||||||
|
- Klicke abschließend auf <strong>„Dokumententyp löschen“</strong>.<br><br>
|
||||||
|
|
||||||
|
<strong>Hinweis:</strong><br>
|
||||||
|
Nach Bestätigung des Löschvorgangs kann der Dokumententyp nicht wiederhergestellt werden.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Here starts code from step 1-->
|
<!-- Here starts code from step 1-->
|
||||||
<div class="step" id="step1">
|
<div class="step" id="step1">
|
||||||
<h2 class="h2" id="step1_h2">Upload your video here:</h2>
|
<h2 class="h2" id="step1_h2">Upload your video here:</h2>
|
||||||
|
|||||||
@@ -391,3 +391,22 @@ existingDocs.addEventListener("change", async () => {
|
|||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
Listeners for the help page
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
//For the help page dropdown list
|
||||||
|
document.addEventListener("click", function (e) {
|
||||||
|
try {
|
||||||
|
const toc = document.getElementById("toc");
|
||||||
|
const toggle = document.querySelector(".toc-toggle");
|
||||||
|
|
||||||
|
if (!toc.contains(e.target) && !toggle.contains(e.target)) {
|
||||||
|
toc.classList.remove("show");
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.log(error);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|||||||
@@ -531,3 +531,27 @@ function sendSpeakerPackages() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
window.sendSpeakerPackages = sendSpeakerPackages;
|
window.sendSpeakerPackages = sendSpeakerPackages;
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
Functions for the help page
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
//Function to show the dropdown list in the help page
|
||||||
|
function toggleTOC() {
|
||||||
|
try {
|
||||||
|
document.getElementById("toc").classList.toggle("show");
|
||||||
|
} catch (error) {
|
||||||
|
console.log(error)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//Function to hide the dropdown list in the help page
|
||||||
|
function closeTOC() {
|
||||||
|
try {
|
||||||
|
document.getElementById("toc").classList.remove("show");
|
||||||
|
} catch (error) {
|
||||||
|
console.log(error)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -807,3 +807,121 @@ button:hover {
|
|||||||
.container select {
|
.container select {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* help page */
|
||||||
|
|
||||||
|
/* ===== CONTAINER ===== */
|
||||||
|
.container {
|
||||||
|
background: white;
|
||||||
|
width: 90%;
|
||||||
|
max-width: 800px;
|
||||||
|
height: 85vh;
|
||||||
|
/* feste Höhe */
|
||||||
|
border-radius: 12px;
|
||||||
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ===== FIXER TOP-BEREICH ===== */
|
||||||
|
.top-bar {
|
||||||
|
padding: 15px 20px;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Buttons */
|
||||||
|
.back-btn,
|
||||||
|
.toc-toggle {
|
||||||
|
background: #007BFF;
|
||||||
|
color: white;
|
||||||
|
border: none;
|
||||||
|
padding: 8px 14px;
|
||||||
|
border-radius: 6px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.back-btn:hover,
|
||||||
|
.toc-toggle:hover {
|
||||||
|
background: #0056b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ===== TOC ===== */
|
||||||
|
.toc-wrapper {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toc {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 45px;
|
||||||
|
background: white;
|
||||||
|
border-radius: 8px;
|
||||||
|
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
|
||||||
|
padding: 10px;
|
||||||
|
min-width: 220px;
|
||||||
|
display: none;
|
||||||
|
z-index: 5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toc a {
|
||||||
|
display: block;
|
||||||
|
padding: 8px 10px;
|
||||||
|
color: #007BFF;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toc a:hover {
|
||||||
|
background: #f0f2f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toc.show {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ===== SCROLLBEREICH ===== */
|
||||||
|
.content {
|
||||||
|
padding: 30px;
|
||||||
|
overflow-y: auto;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Inhalt */
|
||||||
|
h1 {
|
||||||
|
text-align: center;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step h2 {
|
||||||
|
color: #0056b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step h3 {
|
||||||
|
color: #555;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step p {
|
||||||
|
color: #555;
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step img {
|
||||||
|
width: 100%;
|
||||||
|
max-height: 350px;
|
||||||
|
object-fit: contain;
|
||||||
|
border-radius: 8px;
|
||||||
|
margin-top: 15px;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user