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>
|
2022-11-22 22:52:02 +01:00
|
|
|
{{ _("ContentDB will link your account to your forum account if you have one, but you don't need one.") }}
|
2020-12-22 11:58:43 +01:00
|
|
|
</p>
|
2018-05-14 00:31:42 +02:00
|
|
|
|
2020-12-22 11:58:43 +01:00
|
|
|
<p class="mt-5">
|
2023-08-22 20:58:43 +02:00
|
|
|
<a class="btn btn-primary me-3" href="{{ url_for('users.claim_forums') }}">
|
2022-01-08 00:27:00 +01:00
|
|
|
{{ _("<b>Yes</b>, I have a forums account") }}
|
|
|
|
</a>
|
2023-08-22 20:58:43 +02:00
|
|
|
<a class="btn btn-primary me-3" href="{{ url_for('users.register') }}">
|
2022-01-08 00:27:00 +01:00
|
|
|
{{ _("<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>
|
2020-12-22 11:58:43 +01:00
|
|
|
</p>
|
2018-05-14 00:31:42 +02:00
|
|
|
{% endblock %}
|