FreedomBox/plinth/modules/networks/templates/router_configuration_firstboot.html
Sunil Mohan Adapa e89e2b4a2a
*.html: Use SPDX license identifier
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2020-02-19 14:39:19 +02:00

24 lines
537 B
HTML

{% extends "base_firstboot.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% load static %}
{% block content %}
{% include "router_configuration_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 %}