first commit
This commit is contained in:
22
templates/create_finding.html
Normal file
22
templates/create_finding.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user