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

Sign in to SmartTools

Access your dashboard and manage your tools

{{ form_errors(errors) }}
{% if next_url %} {% endif %} {{ text_input( name='email', label='Email address', type='email', placeholder='you@example.com', required=true, value=email or '' ) }} {{ text_input( name='password', label='Password', type='password', placeholder='Your password', required=true ) }}
Forgot password?
{{ button_primary('Sign in', full_width=true) }}

Don't have an account? Create one

{% endblock %}