mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
27 lines
771 B
HTML
27 lines
771 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ _("Create Account") }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ self.title() }}</h1>
|
|
|
|
<h2>{{ _("Do you have an account on the Minetest Forums?") }}</h2>
|
|
|
|
<p>
|
|
ContentDB will link your account to your forum account.
|
|
</p>
|
|
|
|
<p>
|
|
You don't need a forum account, however, it's recommended to make the most
|
|
out of the Minetest community.
|
|
</p>
|
|
|
|
<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>
|
|
{% endblock %}
|