{# # Registration Page #} {% extends 'auth/base-auth.twig' %} {% set title = 'Register' %} {% block content %} {# Logo and Title #}

Create Account

Join Domain Monitor today

{# Error Alert #} {% if flash.error is defined %}
{{ flash.error }}
{% endif %} {# Success Alert #} {% if flash.success is defined %}
{{ flash.success }}
{% endif %} {# Registration Form #}
{{ csrf_field() }} {# Full Name Field #}
{# Username Field #}

Letters, numbers, and underscores only

{# Email Field #}
{# Password Field #}

Minimum 8 characters

{# Confirm Password Field #}
{# Terms Checkbox #}
{# CAPTCHA Widget #} {% include 'auth/_captcha-widget.twig' %} {# Submit Button #}
{# Sign In Link #}

Already have an account? Sign In

{% endblock %} {% block scripts %} {% endblock %}