modifié: index.html

modifié:         superTornado.py
This commit is contained in:
sidya82 2014-02-28 11:22:07 +01:00
parent 5212acc027
commit 54c304c7c7
2 changed files with 1 additions and 3 deletions

View File

@ -2,7 +2,7 @@
<html>
<head>
<meta charset="ISO-8859-1" />
<link rel="stylesheet" type="text/css" href="{{ static_url('styles.css') }}" media="screen, projection">
<link rel="stylesheet" type="text/css" href='styles.css' media="screen, projection">
<title>Page d'identification</title>
<script type="text/javascript">
// Si aucun login et mot de passe n'ont été saisis alors :

View File

@ -131,8 +131,6 @@ application = tornado.web.Application([
(r"/unauthorized", UnauthorizedHandler),
(r"/disconnection", DisconnectionHandler),
(r"/socket", WSocketHandler),],
STATIC_PATH = os.path.join(dirname, 'static'),
TEMPLATE_PATH = os.path.join(dirname, 'templates'),
cookie_secret="1213215656")
if __name__ == "__main__":