{% extends "base.html" %} {% block title %}Join Try English - Create Your Account{% endblock %} {% block extra_css %} {% endblock extra_css %} {% block content %}

Join Try English AI

Start your personalized English learning journey today

1
2
{{ form.hidden_tag() }}

Personal Information

Tell us a bit about yourself to get started

{{ form.username(class="form-input w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 transition-colors", placeholder="Enter your full name", id="username") }} {% if form.username.errors %}
{% for error in form.username.errors %}

{{ error }}

{% endfor %}
{% endif %}
{{ form.email(class="form-input w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 transition-colors", placeholder="Enter your email address", id="email") }} {% if form.email.errors %}
{% for error in form.email.errors %}

{{ error }}

{% endfor %}
{% endif %}
{{ form.password(class="form-input w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 transition-colors", placeholder="Create a strong password", id="password") }} {% if form.password.errors %}
{% for error in form.password.errors %}

{{ error }}

{% endfor %}
{% endif %}

Password must be at least 8 characters long

{{ form.confirm_password(class="form-input w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 transition-colors", placeholder="Confirm your password", id="confirm_password") }} {% if form.confirm_password.errors %}
{% for error in form.confirm_password.errors %}

{{ error }}

{% endfor %}
{% endif %}
{% if form.enrolling_course %}
{% if form.enrolling_course.data %} {% else %} {% endif %}
{% endif %}

What you'll get:

Interactive learning modules
Personalized AI assessment
Expert teacher guidance

Already have an account? Sign In

{% endblock content %}