diff templates/500.html @ 24:2e7226e90157

Many fixes. See detailed description. - Style errors - Writer proper 404 and 500 templates - Make login page redirect back to page being viewed (still buggy?) - Provide a brief blurb about Agora - Use tables for registration and login forms (need to be styled) - Fix typos, grammatical errors. - Don't use .djhtml extension for some templates
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Mon, 28 Jun 2010 03:00:01 -0500
parents 013cf0aa49b7
children e019ca8e14f6
line wrap: on
line diff
--- a/templates/500.html	Sun Jun 27 21:56:57 2010 -0500
+++ b/templates/500.html	Mon Jun 28 03:00:01 2010 -0500
@@ -1,14 +1,12 @@
-<html>
-  <head>
-    <title>Oh, snap!</title>
-  </head>
-  <body>
-    <p>
-      Uh... looks like we messed up somehow. If this problem persists,
-      please let us know at agora@octave.org
-    </p>
-    <p>
-      Thanks!
-    </p>
-  </body>
-</html>
+{% extends "controls.djhtml" %}
+{% block title %}
+Server error
+{% endblock %}
+{% block content %}
+<div class="whitebox">
+<p>
+  The server encountered an internal error. If the problem persists,
+  please let us know.
+</p>
+</div>
+{% endblock %}