Source code for apps.member.context_processors

#-- encoding: utf-8 --
#
# This file is part of I4P.
#
# I4P is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# 
# I4P is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero Public License for more details.
# 
# You should have received a copy of the GNU Affero Public License
# along with I4P.  If not, see <http://www.gnu.org/licenses/>.
#
from userena.forms import AuthenticationForm

from .forms import I4PSignupForm

[docs]def member_forms(request): """ Signin and signup forms (for the upper panel) """ additions = { 'signup_form': I4PSignupForm(), 'signin_form': AuthenticationForm(), } return additions