{% extends "layout.html" %} {% block title %}Registration tokens{% endblock %} {% block content %} {% if current_user.is_authenticated %}

Registration tokens

{% for token in tokens %} {% endfor %}
TokenCreatedValid for (minutes)OTP only
{{ token.created | ctime }} {{ (token.max_age / 60) | int }} {{ token.otp_only }} Delete

Register at: {{ baseurl }}


Add registration token

{% endif %} {% endblock %}