summaryrefslogtreecommitdiff
path: root/templates/changepw/base_m.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/changepw/base_m.html')
-rw-r--r--templates/changepw/base_m.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/changepw/base_m.html b/templates/changepw/base_m.html
new file mode 100644
index 0000000..130719e
--- /dev/null
+++ b/templates/changepw/base_m.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta name="apple-mobile-web-app-capable" content="yes" />
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+ <title>{% block title %}{% endblock %}</title>
+ <!-- <link rel="apple-touch-icon" href="{{ MEDIA_URL }}img/ios-icon.png" /> -->
+ <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css" />
+ <script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
+ <script src="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.js"></script>
+ {% block js %}{% endblock %}
+</head>
+
+<body>
+<div data-role="page" data-theme="b">
+ <header data-role="header" data-theme="b">
+ {% block header %}{% endblock %}
+ </header>
+ <div data-role="content" data-theme="b">
+ {% block content %}{% endblock %}
+ </div>
+ <footer data-role="footer" class="ui-bar" data-theme="b">
+ {% block footer %}{% endblock %}
+ </footer>
+</div>
+</body>
+</html>