{% extends 'base.html' %} {% block content %} {% from '_helpers.jinja' import render_field %} {% from '_common_fields.jinja' import render_notifications_field %}
{{ render_field(form.minutes_between_check) }} Default time for all watches, when the watch does not have a specific time setting.
{% if current_user.is_authenticated %} Remove password {% else %} {{ render_field(form.password) }} Password protection for your changedetection.io application. {% endif %}
{{ render_field(form.base_url, placeholder="http://yoursite.com:5000/", class="m-d") }} Base URL used for the {base_url} token in notifications, default value is the ENV var 'base_url', read more here.
{{ render_field(form.extract_title_as_title) }} Note: This will automatically apply to all existing watches.
{{ render_notifications_field(form) }}
{{ render_field(form.fetch_backend) }}

Use the Basic method (default) where your watched sites don't need Javascript to render.

The Chrome/Javascript method requires a network connection to a running WebDriver+Chrome server, set by the ENV var 'WEBDRIVER_URL'.

{% endblock %}