Files
Reklamator/app/templates/submission/form.html
T

43 lines
1.7 KiB
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}Submit Feedback - {{ product.name }}{% endblock %}
{% block content %}
<h1>Submit Feedback</h1>
<h2>{{ product.name }}</h2>
<p>We value your feedback. Please share your thoughts, report issues, or suggest improvements below.</p>
<form method="POST" enctype="multipart/form-data">
<div class="form-group">
<label for="feedback_text">Your Feedback</label>
<textarea id="feedback_text" name="feedback_text"
placeholder="Describe your feedback in any language..."></textarea>
<p style="font-size: 0.9em; color: #666; margin-top: 5px;">
You can write in any language. Optional if you attach files.
</p>
</div>
<div class="form-group">
<label for="files">Attachments (Optional)</label>
<input type="file" id="files" name="files" multiple>
<p style="font-size: 0.9em; color: #666; margin-top: 5px;">
You can attach up to 3 files (max 10MB each). Allowed types: images (PNG, JPG, GIF),
documents (PDF, TXT, DOC, DOCX), spreadsheets (XLS, XLSX, CSV).
</p>
</div>
<div style="background-color: #f8f9fa; padding: 15px; border-radius: 4px; margin: 20px 0;">
<h3 style="margin-top: 0; font-size: 1.1em;">Privacy Notice</h3>
<ul style="margin: 10px 0; padding-left: 20px; line-height: 1.8;">
<li>Your feedback is submitted anonymously</li>
<li>We do not collect or store your IP address</li>
<li>All files are scanned for malware</li>
<li>Please do not include personal information unless necessary</li>
</ul>
</div>
<button type="submit">Submit Feedback</button>
</form>
{% endblock %}