networks: All first step wizard form for internet connection type

Signed-off-by: Nektarios Katakis <iam@nektarioskatakis.xyz>
[sunil: Use SPDX license identifier]
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Nektarios Katakis 2020-02-16 00:14:37 +00:00 committed by Sunil Mohan Adapa
parent 4ad2d7b2cf
commit eb016bc686
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

View File

@ -0,0 +1,23 @@
{% extends "base_firstboot.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% load static %}
{% block content %}
{% include "internet_connectivity_content.html" %}
<form class="form" method="post">
{% csrf_token %}
{{ form|bootstrap }}
<a href='{{ first_boot_next_step }}'>{% trans "skip this step" %}</a>
<input type="submit" class="btn btn-primary"
value="{% trans "Next" %}" style="float: right;"/>
</form>
{% endblock %}