29 lines
1.3 KiB
PHP
29 lines
1.3 KiB
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
?>
|
|
|
|
<form id="commentReportForm">
|
|
<div class="form-group">
|
|
<label for="commentReportReason">Grund für deine Meldung</label>
|
|
<select name="reason" id="commentReportReason" class="form-control" required>
|
|
<option value="">Bitte auswählen</option>
|
|
<option value="hatespeech">Hasserfüllte Inhalte</option>
|
|
<option value="racism">Rassistische, diskriminierende oder bewusst ausgrenzende Inhalte</option>
|
|
<option value="terrorism">Unterstützung von Terrorismus</option>
|
|
<option value="abuse">(Kindes-)Missbrauch</option>
|
|
<option value="violence">Gewaltverherrlichende Inhalte</option>
|
|
<option value="copyright">Verletzung meiner (Urheber-)Rechte</option>
|
|
<option value="spam">Spam oder irreführende Inhalte</option>
|
|
<option value="technical-issue">Technische Fehler</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="commentReportText">Weitere Anmerkungen (optional)</label>
|
|
<textarea name="reportText" id="commentReportText" class="form-control"></textarea>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary float-right">
|
|
Absenden
|
|
</button>
|
|
</form>
|
|
|