first commit

This commit is contained in:
usernames122
2025-08-10 23:42:02 +02:00
commit 877a246134
24 changed files with 957 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{% extends "base.html" %}
{% block title %}Create Finding{% endblock %}
{% block content %}
<h2>Create a New Finding</h2>
<form method="post" action="{{ url_for('findings.create_finding') }}">
<div class="form-group">
<label for="path">Path (on laminax.org, optional if lorekey is provided)</label>
<input id="path" name="path" class="form-control" type="text" value="{{ path or '' }}">
<small class="form-text text-muted">Example: some/path/here</small>
</div>
<div class="form-group">
<label for="lorekey">Lorekey</label>
<input id="lorekey" name="lorekey" class="form-control" type="text" value="{{ lorekey or '' }}">
</div>
<button type="submit" class="btn btn-primary">Create Finding</button>
</form>
{% endblock %}