14 lines
803 B
HTML
14 lines
803 B
HTML
{% extends "assignment/base_assignment.html" %}
|
|
{% load static %}
|
|
{% block category %}Copyright Assignment{% endblock %}
|
|
{% block outercontent %}
|
|
<h1>Thanks! <svg style="color: #ff41b4; width: 30px; height: 30px; vertical-align: middle;"><use href="{% static 'img/font_awesome.svg' %}#heart"></use></svg></h1>
|
|
|
|
<div class="mw7 mb5">
|
|
<p>Thank you for assigning your copyright to Software Freedom Conservancy! We have recorded the below information regarding the assignment and the works.</p>
|
|
<p>If you would like to make any changes, you must let us know within 7 days by emailing <a href="mailto:info@sfconservancy.org">info@sfconservancy.org</a>. Thanks for helping us enforce free and open source software licenses!</p>
|
|
<form>
|
|
{{ form.as_p }}
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|