{% extends "default.html" %} {% set active_page = "app" %} {% block title %}Sign in with SimpleLogin apps{% endblock %} {% block default_content %}

Apps

List of websites/apps that you have used Sign in with SimpleLogin
{% for client_user in client_users %} {% endfor %}
App Info First used Actions
{{ client_user.client.name }} {% for scope, val in client_user.get_user_info().items() %}
{% if scope == "email" %} Email: {{ val }} {% elif scope == "name" %} Name: {{ val }} {% endif %}
{% endfor %}
{{ client_user.created_at | dt }}
{% endblock %}