simple-login/templates/emails/transactional/code-activation.html
Son NK 32cd2fd650 Add related endpoints for registration
POST /api/auth/register
POST /api/auth/activate
POST /api/auth/reactivate
2020-02-28 19:02:01 +07:00

11 lines
368 B
HTML

{% extends "base.html" %}
{% block content %}
{{ render_text("Hi") }}
{{ render_text("Thank you for choosing SimpleLogin.") }}
{{ render_text("To get started, please activate your account by entering the following code into the application:") }}
{{ render_text("<h1>" + code + "</h1>")}}
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
{% endblock %}