contentdb/app/templates/users/claim.html

27 lines
771 B
HTML
Raw Normal View History

2018-05-14 00:31:42 +02:00
{% extends "base.html" %}
{% block title %}
2020-12-22 11:58:43 +01:00
{{ _("Create Account") }}
2018-05-14 00:31:42 +02:00
{% endblock %}
{% block content %}
2020-12-22 11:58:43 +01:00
<h1>{{ self.title() }}</h1>
2018-05-14 00:31:42 +02:00
2020-12-22 11:58:43 +01:00
<h2>{{ _("Do you have an account on the Minetest Forums?") }}</h2>
2018-05-14 00:31:42 +02:00
2020-12-22 11:58:43 +01:00
<p>
ContentDB will link your account to your forum account.
</p>
2018-05-29 18:42:27 +02:00
2020-12-22 11:58:43 +01:00
<p>
You don't need a forum account, however, it's recommended to make the most
out of the Minetest community.
</p>
2018-05-14 00:31:42 +02:00
2020-12-22 11:58:43 +01:00
<p class="mt-5">
<a class="btn btn-primary mr-3" href="{{ url_for('users.claim_forums') }}"><b>Yes</b>, I have a forums account</a>
<a class="btn btn-primary mr-3" href="{{ url_for('users.register') }}"><b>No</b>, I don't have one</a>
<a class="btn btn-secondary" href="https://forum.minetest.net/ucp.php?mode=register">Create forum account</a>
</p>
2018-05-14 00:31:42 +02:00
{% endblock %}