forked from mirrors/bookwyrm
11 lines
238 B
HTML
11 lines
238 B
HTML
|
{% extends 'landing/layout.html' %}
|
||
|
{% load i18n %}
|
||
|
|
||
|
{% block title %}
|
||
|
{% trans "Resend confirmation link" %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% include "confirm_email/resend_modal.html" with active=True static=True %}
|
||
|
{% endblock %}
|