Add assignment template.
This commit is contained in:
parent
a2675ee029
commit
a53a4560cd
1 changed files with 38 additions and 0 deletions
38
www/conservancy/templates/assignment/assignment_form.html
Normal file
38
www/conservancy/templates/assignment/assignment_form.html
Normal 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 %}
|
Loading…
Reference in a new issue