ca8ccbf5c6
Latest version with default styling. License included.
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
{% load static %}
|
|
<html>
|
|
<head>
|
|
{% include "head.html" %}
|
|
</head>
|
|
<body hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'>
|
|
<script>
|
|
a = new Audio("{% static 'startup.wav' %}");
|
|
a.volume = 0.5;
|
|
a.play();
|
|
</script>
|
|
<div class="window popup login" id="info-window">
|
|
<div class="title-bar">
|
|
<div class="title-bar-text">Welkom bij Muzak</div>
|
|
<div class="title-bar-controls">
|
|
<button aria-label="Close" onclick="hidePopup()"></button>
|
|
</div>
|
|
</div>
|
|
<div class="window-body">
|
|
<div class="icon login"></div>
|
|
<div class="text">
|
|
<div>
|
|
<p>Gebruik onderstaande knop om in te loggen.</p>
|
|
<p>Als je geen inloggegevens hebt, meld je dan bij de beheerder van deze site.</p>
|
|
<div class="field-row">
|
|
<form action="{% url 'oidc_authentication_init' %}" method="get">
|
|
<input type="submit" value="Inloggen" class="default">
|
|
</form>
|
|
<button>Annuleren</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|