16 lines
517 B
Python
Executable file
16 lines
517 B
Python
Executable file
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
print "content-type: text/html"
|
|
print
|
|
|
|
file=open('/var/www/jabber/template')
|
|
html=file.read()
|
|
print html % "<p><img src='/erreurs/403.jpg' width='215' height='54' border='0' usemap='#Map'>\
|
|
<map name='Map'> \
|
|
</map>\
|
|
</p>\
|
|
<p><b><font size='4'>Page interdite</font></b></p>\
|
|
<p>Vous n'avez pas l'autorisation d'afficher ce répertoire ou cette page.</p>\
|
|
<p><b>Note :</b> l'inscritpion à jabber n'est possible que depuis les ordinateurs de la zone crans.</p>\
|
|
<p></p>"
|