{% extends "base.html" %} {% from "components/forms.html" import text_input, button_primary, form_errors, checkbox %} {% block title %}Create Account - SmartTools{% endblock %} {% block content %}

Create your account

Start publishing tools and join the community

{{ form_errors(errors) }}
{{ text_input( name='email', label='Email address', type='email', placeholder='you@example.com', required=true, value=email or '', help='We\'ll send a verification email to this address' ) }} {{ text_input( name='slug', label='Username', type='text', placeholder='your-username', required=true, value=slug or '', help='This will be your unique identifier (e.g., your-username/tool-name)' ) }} {{ text_input( name='display_name', label='Display name', type='text', placeholder='Your Name', required=true, value=display_name or '' ) }} {{ text_input( name='password', label='Password', type='password', placeholder='At least 8 characters', required=true, help='Use a mix of letters, numbers, and symbols' ) }} {{ text_input( name='password_confirm', label='Confirm password', type='password', placeholder='Confirm your password', required=true ) }}
{{ button_primary('Create account', full_width=true) }}

Already have an account? Sign in

{% endblock %}