mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00

* Fix alert class name * feature: csrf protection * Cosmetics * Fix token generate * Admin Panel: changelogs csrf protection * news/id route * Refactor admin newses + add csrf * Use admin.links instead * Admin panel: Pages csrf * Menus: better csrf + add success message on reset colors * Plugins csrf * Move definitions * add info function, same as note($message) * Update mailer.php * Fix new page/news links * clear_cache & maintenance csrf * Formatting * Fix news type * Fix changelog link * Add new changelog link * More info to confirm dialog * This is always true
62 lines
2.6 KiB
Twig
62 lines
2.6 KiB
Twig
{% if action %}
|
|
<div class="card card-info card-outline">
|
|
<div class="card-header">
|
|
<h5 class="m-0">{{ (action == 'edit') ? 'Edit' : 'Add' }}</h5>
|
|
</div>
|
|
<form role="form" method="post" action="{{ cl_link_form }}" id="cl-edit-form">
|
|
{{ csrf() }}
|
|
<input type="hidden" name="action" value="{{ action }}" />
|
|
<div class="card-body">
|
|
{% if action == 'edit' %}
|
|
<input type="hidden" name="id" value="{{ cl_id }}"/>
|
|
{% endif %}
|
|
|
|
<div class="form-group row">
|
|
<label for="body">Content</label>
|
|
<textarea class="form-control" id="body" name="body" maxlength="600" cols="50" rows="5" required>{{ body|raw }}</textarea>
|
|
</div>
|
|
<div class="form-group row">
|
|
<div class="col-12 col-sm-12 col-lg-6">
|
|
<label for="createdate" class="control-label">Date:</label>
|
|
<input type="text" class="form-control" id="createdate" name="createdate" autocomplete="off" maxlength="20" value="{{ create_date|date("M d Y, H:i:s") }}" required/>
|
|
</div>
|
|
<div class="col-sm-6 pl-0">
|
|
<label for="player_id">Author</label>
|
|
<select class="form-control" name="player_id" id="player_id">
|
|
{% for player in account_players %}
|
|
<option value="{{ player.getId() }}"{% if player_id is defined and player.getId() == player_id %} selected="selected"{% endif %}>{{ player.getName() }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<div class="col-sm-6 pl-0">
|
|
<label for="select-where">Where</label>
|
|
<select class="form-control" name="where" id="select-where">
|
|
{% for id, cat in log_where %}
|
|
<option value="{{ cat.id }}"
|
|
{% if (where == 0 and id == 1) or (where == cat.id) %}selected="selected"{% endif %}>{{ cat.icon|capitalize }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
<div class="col-sm-6 pl-0">
|
|
<label for="select-type">Type</label>
|
|
<select class="form-control" name="type" id="select-type">
|
|
{% for id, cat in log_type %}
|
|
<option value="{{ cat.id }}"
|
|
{% if (type == 0 and id == 1) or (type == cat.id) %}selected="selected"{% endif %}>{{ cat.icon|capitalize }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer">
|
|
<button type="submit" class="btn btn-info"><i class="fas fa-update"></i> {{ (action == 'edit') ? 'Update' : 'Add' }}</button>
|
|
<button type="button" onclick="window.location = '{{ constant('ADMIN_URL') }}?p=changelog';"
|
|
class="btn btn-danger float-right"><i class="fas fa-cancel"></i> Cancel
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endif %}
|