{% extends "base.html" %} {% block content %} {{ include ('install/steps.html', {active: 'profile'}) }}
{% include('templates/successerror.html') %}
{% import "templates/inputerror.html" as inputerror %}
AJAX Guestbook Installation (Step 2 - Profile Settings)
Admin ID and Password
{{ inputerror.checkInput("adminiderror") }}
{% if getsession("passerror") %} {{ getsessionanddelete("passerror") }} {% endif %}
Email Settings

Important : PHP mail function is required and should be enabled to get email notifications.

{{ inputerror.checkInput("adminemailerror") }}
{% set cbval = post.cbAdminEmail ? 1 : (post.validateprofile is defined and not post.cbAdminEmail) ? 0 : installprofile[':notifyadmin'] ?: 0 %}

Note : Email notifications will be send to the above mentioned email address.

Pevious
{% endblock %}