Add link and placeholder view for managing a security key

This commit is contained in:
Pea Tyczynska
2021-05-14 12:40:24 +01:00
parent 773a51dec1
commit c33465e7cf
6 changed files with 50 additions and 16 deletions

View File

@@ -0,0 +1,17 @@
{% 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 %}