{% extends "base.html" %} {% block title %}Settings{% endblock %} {% block content %}

Settings

{% if user.role == 'admin' %}

Change password

Sign-in options

Codes go to the registered email, work once and expire in 10 minutes. This needs email sending to be set up below.{% if not mail_ready %} Email is not set up yet.{% endif %}

Welcome email template

Sent automatically when you add a new Lead or User. The body is HTML.

{% if mail_ready %}Email sending is set up. Sent from {{ mail_from }}. {% else %}Email sending is not set up yet. Emails will not be sent until it is (see README).{% endif %}

Click to insert: {% for v in template_vars %}{% endfor %}

The preview uses sample values. Scripts are removed when saved, and each placeholder is filled with the person's own details when the email is sent.

Uses the template as typed above, even if not saved yet.
{% else %}

Your account

Signed in with Google as {{ user.email }}.

Your login uses your Google account, so there is no portal password to change.

{% endif %} {% endblock %}