summaryrefslogtreecommitdiff
path: root/static/templates
diff options
context:
space:
mode:
Diffstat (limited to 'static/templates')
-rw-r--r--static/templates/base.html2
-rw-r--r--static/templates/error.html7
2 files changed, 8 insertions, 1 deletions
diff --git a/static/templates/base.html b/static/templates/base.html
index fe4875e..021f95e 100644
--- a/static/templates/base.html
+++ b/static/templates/base.html
@@ -10,7 +10,7 @@
<body>
{% block content %}{% endblock content %}
<footer>
- <div id="copyright">&copy; 2023 Amplify Education Inc.</div>
+ <div id="copyright">&copy; 2023</div>
</footer>
</body>
</html>
diff --git a/static/templates/error.html b/static/templates/error.html
new file mode 100644
index 0000000..4fbe87f
--- /dev/null
+++ b/static/templates/error.html
@@ -0,0 +1,7 @@
+{% extends "base.html" %}
+{% block title %}{{ msg(key="errorTitle") }}{% endblock title %}
+
+{% block content %}
+<p>{{ msg(key=errorHeader) }}</p>
+<p>{{ msg(key=errorMessage) }}</p>
+{% endblock content %}