1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-02-17 10:53:57 +00:00
royalnet/templates/main.html

45 lines
No EOL
1.1 KiB
HTML

{% extends 'base.html' %}
{% block pagetitle %}
Royal Games
{% endblock %}
{% block posthead %}
<script>
function send() {
document.querySelector("#send").setAttribute("disabled", "true");
var x = new XMLHttpRequest();
x.open("GET", "{{ easter_egg }}", true);
x.send();
}
</script>
{% endblock %}
{% block body %}
<h1>
Admin Dashboard
</h1>
<p>
<button>Ban</button> <input type="text" value="Sensei"> for <input type="text" value="sending nudes">
</p>
<p>
<button>Create</button> useless Consiglio
</p>
<p>
<button>Generate</button> random russian insults
</p>
<p>
<button>Delete</button> some random messages from Telegram
</p>
<p>
<button>Trigger</button> either @EvilBalu or @Protoh
</p>
<p>
<button id="send" onclick="send()">Send</button> super secret file
</p>
<p>
<h3>GDPR compliance</h3>
<a href="{{ url_for('static', filename='passwordisryg.kdbx') }}">Download</a> RYG members' passwords
</p>
{% endblock %}