27 lines
749 B
HTML
27 lines
749 B
HTML
{% extends "base_conservancy.html" %}
|
|
{% block category %}Copyright Assignment{% endblock %}
|
|
{% block outercontent %}
|
|
<style>
|
|
label { display: block; }
|
|
input, textarea, select {
|
|
width: 25rem;
|
|
padding: 0.25rem;
|
|
border-radius: 2px;
|
|
}
|
|
input[type=checkbox] { width: auto; }
|
|
span[class=helptext] {
|
|
display: block;
|
|
font-size: 12px;
|
|
font-style: italic;
|
|
color: #666;
|
|
}
|
|
#id_place_of_residence {
|
|
height: 5rem;
|
|
}
|
|
</style>
|
|
<h1>Thanks!</h1>
|
|
|
|
<div class="mw7">
|
|
<p>You'll shortly receive an email with the paperwork required to complete this assignment. If you have any questions or concerns, please don't hesitate to <a href="/about/contact/">contact us</a>.</p>
|
|
</div>
|
|
{% endblock %}
|