rDrama/files/templates/admin/image_purge.html
Aevann1 80ac8b5bb4 Revert "gfgf"
This reverts commit 5c7d96660d.
2021-09-03 19:03:25 +02:00

19 lines
No EOL
661 B
HTML

{% extends "default.html" %}
{% block title %}
<title>Purge Image</title>
<meta name="description" content="Purge Image">
{% endblock %}
{% block content %}
<h1>Imgur and Cloudflare Image Purge</h1>
<p>Paste an image link here to remove it from imgur and from cloudflare cache. You need to enter the full url of the image like this "https://i.imgur.com/63OclpM_d.png?maxwidth=9999"</p>
<form action="/admin/image_purge" method="post" class="mb-6">
<label for="link-input">Image Link</label>
<input id="link-input" type="text" class="form-control mb-2" name="url">
<input type="submit" value="Delete Image" class="btn btn-primary">
</form>
{% endblock %}