mirror of
https://github.com/Cian-H/invenio-config-iform.git
synced 2025-12-22 21:11:57 +00:00
21 lines
779 B
HTML
21 lines
779 B
HTML
<p>{{ _('Dear %(email)s!', email=user.email) }}</p>
|
|
|
|
<p>{{ _('To help you get started, here are some useful links:') }}</p>
|
|
|
|
<p>
|
|
<a href="https://{{ config.SITE_HOSTNAME }}{{ url_for('invenio_theme_tugraz.index') }}">{{ _('TU Graz Repository') }}</a> <br>
|
|
<a href="https://{{ config.SITE_HOSTNAME }}{{ url_for('invenio_theme_tugraz.guide')">{{ _('Reference Guide') }}</a><br>
|
|
<a href="https://{{ config.SITE_HOSTNAME }}{{ url_for('invenio_theme_tugraz.terms')">{{ _('Terms and Conditions') }}</a> <br>
|
|
</p>
|
|
|
|
{% if security.confirmable %}
|
|
<p>{{ _('You can confirm your email through the link below:') }}</p>
|
|
|
|
<p><a href="{{ confirmation_link }}">{{ _('Confirm my account') }}</a></p>
|
|
{% endif %}
|
|
|
|
<p>
|
|
{{ _('Best regards') }} <br>
|
|
{{ _('TU Graz Repository Team') }}
|
|
</p>
|