Files @ 0565f9b308ed
Branch filter:

Location: website/www/conservancy/templates/assignment/assignment_form.html

bsturmfels
Update the assignment form with feedback from Pam/Denver.
{% extends "assignment/base_assignment.html" %}
{% block category %}Copyright Assignment{% endblock %}
{% block outercontent %}
  <h1>Copyright Assignment</h1>

  <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>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>

    <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>

    <form action="." method="post" class="mw7">
      {% csrf_token %}
      {{ form.as_p }}

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