{% extends "base.html" %} {% block title %}Create Account \u2013 Try English AI{% endblock %} {% block extra_css %} {% endblock extra_css %} {% block content %} {%- set sec2_err = form.roll_number.errors or form.section.errors or form.program.errors or form.department.errors %} {%- set sec1_err = form.username.errors or form.email.errors or form.password.errors or form.confirm_password.errors %} {%- set start2 = sec2_err and not sec1_err %}
Try English

Create Your Account

Start your AI-powered English learning journey today

{% with messages = get_flashed_messages(with_categories=true) %}{% if messages %}{% for cat, msg in messages %}
{{ msg }}
{% endfor %}{% endif %}{% endwith %}
1
2
{{ form.hidden_tag() }}

Personal Information

Tell us a bit about yourself to get started

{{ form.username(class="di", placeholder="Enter your full name", id="username") }}
{% if form.username.errors %}{% for e in form.username.errors %}

{{ e }}

{% endfor %}{% endif %}
{{ form.email(class="di", placeholder="you@example.com", id="email", autocomplete="email") }}
{% if form.email.errors %}{% for e in form.email.errors %}

{{ e }}

{% endfor %}{% endif %}
{{ form.password(class="di", style="padding-right:2.5rem", placeholder="Min. 6 characters", id="password") }}

Password strength

{% if form.password.errors %}{% for e in form.password.errors %}

{{ e }}

{% endfor %}{% endif %}
{{ form.confirm_password(class="di", style="padding-right:2.5rem", placeholder="Repeat password", id="confirm_password") }}
{% if form.confirm_password.errors %}{% for e in form.confirm_password.errors %}

{{ e }}

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

Already have an account? Sign In

{% endblock content %}