forked from MarseyWorld/MarseyWorld
27 lines
875 B
HTML
27 lines
875 B
HTML
{% extends "default.html" %}
|
|
|
|
{% block pagetitle %}Delete Media{% endblock %}
|
|
|
|
{% block content %}
|
|
<form class="mt-3" action="/admin/delete_media" method="post" data-nonce="{{g.nonce}}" data-onsubmit="sendFormXHR(this)">
|
|
<div class="container">
|
|
<div class="row justify-content-center mb-4 pb-6">
|
|
<div class="col col-md-6 p-3 py-md-0">
|
|
<h1 class="d-mob-none">Delete Media</h1>
|
|
<h3 class=" d-md-none">Delete Media</h3>
|
|
<div class="body">
|
|
<input hidden name="formkey" value="{{v|formkey}}">
|
|
<label>URL</label>
|
|
<input class="form-control" type="url" name="url" required {% if url %}value="{{url}}"{% endif %}>
|
|
<div class="footer">
|
|
<div class="d-flex">
|
|
<button type="submit" class="btn btn-primary ml-auto">Delete</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|