Add assignment template.

This commit is contained in:
Ben Sturmfels 2021-11-30 16:18:43 +11:00
parent a2675ee029
commit a53a4560cd
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -0,0 +1,38 @@
{% 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>Copyright Assignment</h1>
<div class="mw7">
<p>Thank you for considering assigning your copyright to the Software Freedom Conservancy. Your assignment helps us enforce copyright on your behalf.</p>
<p>Please complete the following form and we will prepare the appropriate paperwork. You will receive a PDF form to sign and be witnessed by a public notary.</p>
</div>
<form action="." method="post" class="mw7">
{% csrf_token %}
{{ form.as_p }}
<p><em>Please be aware that some employment agreements explicitly transfer copyright ownership to the employer. We recommend you review your recent employment agreements for such clauses.</em></p>
<p><button type="submit" class="ph3 pv2">Next</button>
</form>
{% endblock %}