website/www/templates/fossy/thanks.html
Ben Sturmfels 531a97a3c9
Eliminate "conservancy" and "apps" subdirectories
The directory nesting is unnecessary here and confusing to navigate. I've moved
all apps to the project subdirectory, currently called "www", but soon to be
renamed "conservancy".

I've also moved manage.py to the top-level directory.
2023-10-25 12:36:39 +11:00

28 lines
872 B
HTML

{% extends 'fossy/base.html' %}
{% load static %}
{% block head %}
{{ block.super }}
<style>
input, select, textarea {
border: none;
padding: 0 !important;
}
.helptext {
display: none !important;
}
</style>
{% endblock %}
{% block outercontent %}
<div class="mw8 center ph2 ph3">
<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>
{% endblock %}