Support ZIP uploads

This commit is contained in:
george
2026-06-06 00:30:24 +01:00
parent a5fc7f240d
commit 979a32cfb8
3 changed files with 131 additions and 4 deletions
+2 -2
View File
@@ -17,7 +17,7 @@
<!-- File Input (multiple files allowed) -->
<label for="files">Select Files:</label>
<input type="file" name="files" id="files" multiple accept=".md,.txt,.py,.js,.ts,.json,.yaml,.yml,.html,.css,.pdf" required>
<input type="file" name="files" id="files" multiple accept=".md,.txt,.py,.js,.ts,.json,.yaml,.yml,.html,.css,.pdf,.zip" required>
<!-- Ingest Checkbox -->
<div style="margin-top: 10px;">
@@ -31,7 +31,7 @@
</form>
<!-- Allowed extensions hint -->
<p class="hint">Allowed: .md, .txt, .py, .js, .ts, .json, .yaml, .yml, .html, .css, .pdf (max 5MB each)</p>
<p class="hint">Allowed: .md, .txt, .py, .js, .ts, .json, .yaml, .yml, .html, .css, .pdf, .zip (files max 5MB, ZIPs max 100MB)</p>
<!-- Results Display -->
<div id="upload-result" class="result-box"></div>