{% extends "base.html" %} {% block content %}
 

Find people you know

Sharing your content allows your friends to see everything you posted as {{ active_persona.username }}.

{{form.email(placeholder="Email")}}
{% if error %}

{{ error }}

{% endif %} {% if form.email.errors %}
    {% for error in form.email.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ form.csrf_token }}
{% if found %}
{% for p in found %} {% endfor %}
Found {{found|length}} Personas
{{p.username}} <{{p.id|truncate(6, True, end="")}}>
{% endif %} {% endblock %}