{% extends "base.html" %} {% block title %}Sign Up{% endblock %} {% block meta_description %}Create a Tecvico client account and submit your project brief.{% endblock %} {% block content %}
Client Portal

Create Account

Tell us about your project and our team will take it from there.

{% include "accounts/_social_auth.html" %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.first_name }} {{ form.first_name.errors }}
{{ form.last_name }} {{ form.last_name.errors }}
{{ form.email }} {{ form.email.errors }}
{{ form.username }} {{ form.username.errors }}
{{ form.company }} {{ form.company.errors }}
{{ form.phone }} {{ form.phone.errors }}
{{ form.password1 }} {{ form.password1.errors }}
{{ form.password2 }} {{ form.password2.errors }}
{% endblock %}