|
- #!/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 [
- "<center>",
- "<h1>FORBIDDEN</h1>",
- "<img src='/attack_dog.jpg'>",
- "<br><br><br>",
- "Maybe you should go back to <a href='/index.html'>index</a>",
- "</center>"
- ]
|