FreedomBox/freedombox/modules/networks/templates/connections_create.html
Sunil Mohan Adapa 23b6aff290
plinth/*: Rename plinth/ folder to freedombox/
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2026-08-28 07:35:01 -04:00

22 lines
447 B
HTML

{% extends "connections_edit.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load i18n %}
{% block content %}
<h3>{{ title }}</h3>
<form class="form form-connection form-connection-create" method="post">
{% csrf_token %}
{% include "connections_fields.html" %}
<input type="submit" class="btn btn-primary"
value="{% trans "Create Connection" %}"/>
</form>
{% endblock %}