{% extends 'form_login.html.twig' %}{% block title %}Reset your password{% endblock %}{% block content %}{% for flash_error in app.flashes('reset_password_error') %}<div class="alert alert-danger" role="alert">{{ flash_error }}</div>{% endfor %}<div class="form-group"><h3>Reset Your Password</h3><br>{{ form_start(requestForm) }}{{ form_row(requestForm.email, { 'attr': {'class': 'form-control'} }) }}<br><div><small>Enter your email address and we will send you alink to reset your password.</small></div><br><div><small><a href="{% if domain == publisherDomain %}/api/client/publisher/login{% elseif domain == advertiserDomain %}/api/client/advertiser/login{% else %}/login{% endif %}">Back to login page.</a></small></div><br><button class="btn btn-block" style="background-color: #4285F4; color: white">Send password reset email</button>{{ form_end(requestForm) }}</div>{% endblock %}