File diff 2b1fd9ab90d9 → 0565f9b308ed
www/conservancy/templates/assignment/assignment_form.html
Show inline comments
 
{% extends "base_conservancy.html" %}
 
{% extends "assignment/base_assignment.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>
 
  <div class="mw7 mb5">
 
    <p>Thank you for considering assigning your copyright to the Software Freedom Conservancy. Your assignment helps us enforce free and open source software licenses.</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>
 
    <p>By filling in and submitting the below form, you agree to assign your copyrights in the specified projects to Software Freedom Conservancy, which means that Conservancy can enforce the licenses that your code is under in court, without you needing to be involved.  Conservancy agrees to keep your code under a free and open source license.</p>
 

	
 
  <form action="." method="post" class="mw7">
 
    {% csrf_token %}
 
    {{ form.as_p }}
 
    <p>If you have any questions about assigning your copyright to Conservancy, please don't hesitate to email us at <a href="mailto:info@sfconservancy.org">info@sfconservancy.org</a>.</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>
 
    <form action="." method="post" class="mw7">
 
      {% csrf_token %}
 
      {{ form.as_p }}
 

	
 
    <p><button type="submit" class="ph3 pv2">Next</button></p>
 
  </form>
 
      <p><button type="submit" class="ph3 pv2">Next</button></p>
 
    </form>
 
  </div>
 
{% endblock %}