mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-06 17:38:25 -04:00
18 lines
352 B
HTML
18 lines
352 B
HTML
|
|
{% extends "withoutnav_template.html" %}
|
||
|
|
{% from "components/page-header.html" import page_header %}
|
||
|
|
|
||
|
|
|
||
|
|
{% set page_title = 'Manage security key' %}
|
||
|
|
|
||
|
|
{% block per_page_title %}
|
||
|
|
{{ page_title }}
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
{% block maincolumn_content %}
|
||
|
|
{{ page_header(
|
||
|
|
page_title,
|
||
|
|
back_link=url_for('.user_profile_security_keys')
|
||
|
|
) }}
|
||
|
|
|
||
|
|
{% endblock %}
|