website/conservancy/templates/fossy/thanks.html

29 lines
872 B
HTML
Raw Normal View History

2023-01-27 08:49:25 +00:00
{% extends 'fossy/base.html' %}
{% load static %}
{% block head %}
{{ block.super }}
<style>
input, select, textarea {
border: none;
padding: 0 !important;
}
.helptext {
display: none !important;
}
</style>
2023-01-27 08:49:25 +00:00
{% endblock %}
{% block outercontent %}
<div class="mw8 center ph2 ph3">
2023-01-27 08:49:25 +00:00
<h1>Thanks! <svg style="color: #ff41b4; width: 30px; height: 30px; vertical-align: middle;"><use href="{% static 'img/font_awesome.svg' %}#heart"></use></svg></h1>
<div class="mw7 mb5">
<p>Thanks very much for taking the time and effort to propose a community track. We'll get back to you as soon as we've selected the tracks. In the mean time if you have any questions, please email <a href="mailto:conference@sfconservancy.org">conference@sfconservancy.org</a>.</p>
<form>
{{ form.as_p }}
</form>
</div>
</div>
2023-01-27 08:49:25 +00:00
{% endblock %}