#!/usr/bin/python # -*- coding: utf-8; tab-width: 4; indent-tabs-mode: nil; -*- from decorators import WSGISimpleAuth # decoratore ( singleton ) auth = WSGISimpleAuth() def application( environ, start_response ): start_response( '200 OK', [('content-type', 'text/html; charset=utf-8')] ) return [ "
", "

FORBIDDEN

", "", "


", "Maybe you should go back to index", "
" ]