{% extends 'django_cryptolock/base.html' %} {% block content %} {% if request.user.is_authenticated %}

Hello {{request.user.username}}

Here are your details:

{% csrf_token %}
{% else %}

Hey stranger

This website is an example of the "django_cryptolock" package.

It lets you (and your users) use your monero wallet to login on your website. You just need to sign the challenge that is provided to you.

Go ahead and try it.

{% endif %} {% endblock content %}