mirror of
https://github.com/perstarkse/minne.git
synced 2026-03-20 00:24:30 +01:00
20 lines
1.1 KiB
HTML
20 lines
1.1 KiB
HTML
{% extends "body_base.html" %}
|
|
{% block main %}
|
|
<div class="container px-4 max-w-screen-lg">
|
|
<form class="space-y-2" hx-post="/ingress" enctype="multipart/form-data">
|
|
<h1 class="text-2xl">Add content to the database </h1>
|
|
<label class="label label-text">Instructions</label>
|
|
<textarea name="instructions" class="textarea w-full input-bordered"
|
|
placeholder="Enter instructions for the AI here, help it understand what its seeing or how it should relate to the database"></textarea>
|
|
<label class="label label-text">Content (optional)</label>
|
|
<textarea name="content" class="textarea w-full input-bordered" placeholder="Additional content"></textarea>
|
|
<label class="label label-text">Category</label>
|
|
<input type="text" name="category" class="input input-bordered" placeholder="Category for ingress">
|
|
|
|
<label class="label label-text">Files</label>
|
|
<input type="file" name="files" multiple class="file-input file-input-bordered" />
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
</form>
|
|
<div id="ingress-result"></div>
|
|
</div>
|
|
{% endblock %} |