{# Ënnstatus Copyright (C) 2015 Dennis Fink This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . #} {% extends "base.html" %} {% import 'bootstrap/wtf.html' as wtf %} {% set title = "Bridge Program" %} {% block content %}

Bridge Program

Fight censorship! Our bridge program allows you to support the Tor network by adopting a Tor bridge.

Rather than making a single donation, you can now fund a Tor bridge on your own. Bridges are an important element in the Tor network because they allow people to use the network even if the direct acces to its entry-nodes is blocked in their country. This is mainly the case for people living under oppressive regimes. Read more about Tor bridges

With a recurring contribution of 3 EUR/month (duration min. 12 months) you can help us keep such a bridge up and running. The servers for this project are located in Luxembourg.

As a partner in our project you can choose the nickname of your bridge and follow it on Ënnstatus, our self-made information-panel.

Apply for the bridge program

{{ form.hidden_tag() }} {{ wtf.form_field(form.fullname, form_type='horizontal') }} {{ wtf.form_field(form.email, form_type='horizontal') }} {{ wtf.form_field(form.bridgename, form_type='horizontal') }}
{{ form.duration.label(class_='control-label col-lg-2') }}
{% for field in form.duration %}
{{ field() }}
{% endfor %}
{% if form.duration.errors %}
{% for error in form.duration.errors %}

{{ error }}

{% endfor %}
{% endif %}
{{ form.payment.label(class_='control-label col-lg-2') }}
{% for field in form.payment %}
{{ field() }}
{% endfor %}
{% if form.payment.errors %}
{% for error in form.payment.errors %}

{{ error }}

{% endfor %}
{% endif %}
{{ form.submit(class_='btn btn-enn') }}

More information

You want to know more about our work?

Our bridge operator will give you further information about the project.

{% endblock %}