{% extends 'base.html' %} {% load i18n %} {% block centered_container %}

{% if pem_type == 'private' %} {% trans "Convert private pem to jwk" %} {% else %} {% trans "Convert Public pem to jwk" %} {% endif %}

{% trans "Enter a pem in the field below to decode it in jwk format." %}

{% csrf_token %}
{% if jwk %}

{% if pem_type == 'private' %} {% trans "Private pem" %} {% else %} {% trans "Public pem" %} {% endif %}

{% endif %}
{% endblock %}