add loading of MNT-data from kverify

This commit is contained in:
lare 2022-11-17 06:43:43 +01:00
parent 83e411bcc3
commit 9476ec4f63
7 changed files with 100 additions and 24 deletions

13
web/frontend/peer.html Normal file
View file

@ -0,0 +1,13 @@
{% extends 'base.html' %}
{% block content %}
<form action="peer" method="post">
<select name="node" id="node">
{% for node in config["nodes"] %}
<option value="{{node}}" {% if selected_node %}{% if selected_node == node %}selected{% endif %}{% endif %} >{{node}}</option>
{% endfor %}
</select>
</form>
{% endblock %}