{% extends "base_registration.html" %} {% block content %}
{% load static %} BeetleboxCI Logo

Sign up for BeetleboxCI

Automate your next FPGA design process

Sign up for your free account on BeetleboxCI Early Access

Our Free Plan includes:

  • 10,000 Free Credits
  • 10GB free storage space
  • Unlimited git repositories and contributors
  • Access to powerful machines
{% csrf_token %}

{{ form.email_address.label_tag }}
{{ form.email_address }} {% for error in form.email_address.errors %}

{{ error }}

{% endfor %}

{{ form.company.label_tag }}
{{ form.company }} {% for error in form.company.errors %}

{{ error }}

{% endfor %}

{{ form.first_name.label_tag }}
{{ form.first_name }} {% for error in form.first_name.errors %}

{{ error }}

{% endfor %}

{{ form.surname.label_tag }}
{{ form.surname }} {% for error in form.surname.errors %}

{{ error }}

{% endfor %}

{{ form.password1.label_tag }}
{{ form.password1 }} {% for error in form.password1.errors %}

{{ error }}

{% endfor %}

{{ form.password2.label_tag }}
{{ form.password2 }} {% for error in form.password2.errors %}

{{ error }}

{% endfor %}

{{ form.agree }} I agree to the Privacy Policy and Terms and Conditions

{% for error in form.agree.errors %}

{{ error }}

{% endfor %}

{# Assumes you setup the password_reset view in your URLconf #}
{% endblock %}