21 lines
		
	
	
		
			700 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			700 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'global.html'%}
 | 
						|
 | 
						|
{% block maincontent %}
 | 
						|
<form class="LP-Form" method="POST" enctype="multipart/form-data">
 | 
						|
    <fieldset class="LP-Form__Fieldset">
 | 
						|
        <legend class="LP-Form__Legend">Submit images to an place</legend>
 | 
						|
        {% csrf_token %}
 | 
						|
 | 
						|
        <div class="LP-Form__Composition">
 | 
						|
            <div class="LP-Form__Field">
 | 
						|
                {% include 'partials/form/inputField.html' with field=form.filename %}
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
 | 
						|
        <div class="LP-Form__Composition LP-Form__Composition--buttons">
 | 
						|
            {% include 'partials/form/submit.html' with referrer=request.META.HTTP_REFERER %}
 | 
						|
        </div>
 | 
						|
    </fieldset>
 | 
						|
 | 
						|
</form>
 | 
						|
{% endblock maincontent %} |