1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-27 13:34:28 +00:00
royalnet/templates/main.html

45 lines
1.1 KiB
HTML
Raw Normal View History

2018-06-01 11:36:30 +00:00
{% extends 'base.html' %}
{% block pagetitle %}
Royal Games
{% endblock %}
2018-06-01 11:45:45 +00:00
{% 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 %}
2018-06-01 11:36:30 +00:00
{% block body %}
<h1>
2018-06-01 11:45:45 +00:00
Admin Dashboard
2018-06-01 11:36:30 +00:00
</h1>
2018-06-01 11:45:45 +00:00
<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>
2018-06-01 11:36:30 +00:00
{% endblock %}