32 lines
1.1 KiB
Twig
32 lines
1.1 KiB
Twig
<!DOCTYPE html>
|
|
<html>
|
|
|
|
{{ include('_header.html.twig') }}
|
|
|
|
<body>
|
|
{{ include('_navbar.html.twig')}}
|
|
<div class="container">
|
|
<h2>Anonymous Complaint Page
|
|
<h4 class="text-bold">Instructions</h4>
|
|
|
|
<p>Type your complaint or problem into the message box below and click "Submit".
|
|
<br>Messages will be sent directly to {{ complaintReceiverName }}'s email account.
|
|
<br>Messages will be completely anonymous so complaints cannot be traced to a specific person.
|
|
<br> Feel free to submit any problem or concern.
|
|
<br><strong>Note: If you add personally identifying information (such as your name) then this won't be anonymous. Avoid this, unless you want your identity to be known</strong>
|
|
</p>
|
|
|
|
</div>
|
|
{{ form(form) }}
|
|
<div class="container">
|
|
{% if isSubmitted != null %}
|
|
{% if isSubmitted %}
|
|
<h5 class="alert alert-success"> Form submitted successfully </h5>
|
|
{% else %}
|
|
<h5 class="alert alert-danger"> Form failed to submit with errors </h5>
|
|
{% endif %}
|
|
{% else %}
|
|
{% endif %}
|
|
</div>
|
|
</body>
|
|
</html> |