Files
@ 2f5c29d5d819
Branch filter:
Location: FVDE/ennstatus/ennstatus/templates/root/contact.html - annotation
2f5c29d5d819
3.0 KiB
text/html
Use custom color for submit buttons
9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 4c27322acc94 4c27322acc94 4c27322acc94 4c27322acc94 4c27322acc94 9bfee64f690e 555f1649956f 555f1649956f 9dac928ea7d1 dd0ea791f9b3 9dac928ea7d1 9dac928ea7d1 ce8015bd22cd 2f5c29d5d819 9dac928ea7d1 9dac928ea7d1 9dac928ea7d1 555f1649956f 555f1649956f 9c0812693e0a 9bfee64f690e 9bfee64f690e b9e6b50107d0 b9e6b50107d0 b9e6b50107d0 b9e6b50107d0 b9e6b50107d0 0e0195cb7c67 de6652eaf965 322891a5252c 322891a5252c 9bfee64f690e b9e6b50107d0 9bfee64f690e d179dc5cc255 9bfee64f690e 0e0195cb7c67 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 0e0195cb7c67 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e | {% extends "base.html" %}
{% set title = "Contact" %}
{% block content %}
<div class="col-md-4">
<img src="{{ url_for('static', filename='images/Contact.png') }}" class="img-responsive img-rounded center-block" alt="WhoIs" width="160"></img>
<div class="text-center">
<h2>Contact</h2>
</div>
</div>
<div class="col-md-8 clearfix">
<h2 class="pull-left">General</h2>
<div class="pull-right">
<form class="form-inline" role="form" method="POST" action="{{ url_for('root.contact') }}">
{{ form.hidden_tag()}}
<div class="form-group">
{{ form.country(class_='form-control input-sm', onchange='this.form.submit()') }}
<noscript><input type="submit" class="btn btn-enn btn-sm" value="Submit"></noscript>
</div>
</form>
</div>
</div>
<div class="col-md-8">
<p>Please mail all general inquiries to:</p>
<address>
<strong>Frënn vun der Ënn, ASBL</strong><br>
BPM 381892<br>
{{ address['address'] }}<br>
{{ address['postal_code'] }}, {{ address['city'] }}<br>
{{ address['country'] }}<br>
<br>
<abbr title="E-Mail"><span class="glyphicon glyphicon-envelope"></span></abbr> : <a href="mailto:info@enn.lu">info@enn.lu</a> <span class="glyphicon glyphicon-lock"></span> GPG: <a href="http://keyserver.cypherpunk.lu:11371/pks/lookup?search=info@enn.lu&op=vindex" target="_blank">0x02225522</a><br>
<abbr title="Website"><span class="glyphicon glyphicon-cloud"></span></abbr> : <a href="//enn.lu/">enn.lu/</a> <strong>or</strong> <a href="//{{ config['ENNSTATUS_ONION_ADDRESS'] }}/" target="_blank">{{ config['ENNSTATUS_ONION_ADDRESS'] }}</a><br>
<abbr title="Phone"><span class="glyphicon glyphicon-earphone"></span></abbr> : +352-691-71-77-44<br>
<abbr title="Fax"><span class="glyphicon glyphicon-phone-alt"></span></abbr> : +352-20-21-18-60
</address>
<h2>Abuse</h2>
<p>For further details about abuse handling, have a look over <a href="{{ url_for('root.abuse') }}">here</a>.</p>
<address>
<abbr title="E-Mail"><span class="glyphicon glyphicon-envelope"></span></abbr> : <a href="mailto:abuse@enn.lu">abuse@enn.lu</a> <span class="glyphicon glyphicon-lock"></span> GPG: <a href="http://keyserver.cypherpunk.lu:11371/pks/lookup?search=info@enn.lu&op=vindex" target="_blank">0x02225522</a><br>
<abbr title="Phone"><span class="glyphicon glyphicon-earphone"></span></abbr> : </strong>+352-691-71-77-44<br>
</address>
<h2>Press</h2>
<p>Press related inqueries should go to:</p>
<address>
<abbr title="E-Mail"><span class="glyphicon glyphicon-envelope"></span></abbr> : <a href="mailto:press@enn.lu">press@enn.lu</a> <span class="glyphicon glyphicon-lock"></span> GPG: <a href="http://keyserver.cypherpunk.lu:11371/pks/lookup?search=info@enn.lu&op=vindex" target="_blank">0x02225522</a><br>
<abbr title="Phone"><span class="glyphicon glyphicon-earphone"></span></abbr> : </strong>+352-691-71-77-44<br>
</address>
</div>
{% endblock %}
|