Database refactoring and improving blog comments, blog post history and more
This commit is contained in:
28
application/views/blog/report_modal.php
Normal file
28
application/views/blog/report_modal.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?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>
|
||||
|
Reference in New Issue
Block a user