Initial commit

This commit is contained in:
Daniel S. 2021-08-29 15:03:28 +02:00
commit 7523a19d1f
40 changed files with 3984 additions and 0 deletions

23
templates/remote/add.html Normal file
View file

@ -0,0 +1,23 @@
{% extends "base.html" %}
{% from 'utils.html' import custom_render_form_row,make_tabs %}
{% from 'bootstrap/form.html' import render_form, render_field, render_form_row %}
{% block app_content %}
{% if form %}
<h1>Grant remote access</h1>
{% endif %}
<div class="row">
<div class="col-lg">
<form method="post" class="form">
{{form.csrf_token()}}
{{custom_render_form_row([form.name])}}
{{custom_render_form_row([form.ssh_key])}}
{{custom_render_form_row([form.add])}}
</form>
</div>
</div>
{% endblock %}