0f5090cadc
Nu met 100% meer mogelijkheid tot stemmen. Top.
14 lines
384 B
HTML
14 lines
384 B
HTML
{% extends "Base.html" %}
|
|
|
|
{% block main-content %}
|
|
{% if user.is_authenticated %}
|
|
<p>Current user: {{ user.email }}</p>
|
|
<form action="{% url 'oidc_logout' %}" method="post">
|
|
{% csrf_token %}
|
|
<input type="submit" value="logout">
|
|
</form>
|
|
{% else %}
|
|
<a href="{% url 'oidc_authentication_init' %}">Login</a>
|
|
{% endif %}
|
|
{% endblock %}
|