diff options
author | johnyma22 <john@mclear.co.uk> | 2012-11-02 13:16:15 +0000 |
---|---|---|
committer | johnyma22 <john@mclear.co.uk> | 2012-11-02 13:16:15 +0000 |
commit | 89e38ed4c240d826e32eddc9f2b5794731b804ea (patch) | |
tree | d57d3ee95794c1f7589418ee8ad46dbdeaad5e69 /src/templates/admin | |
parent | 1da39d3d1a0cd29e72d42b9a7207afeea6ee41b2 (diff) | |
download | etherpad-lite-89e38ed4c240d826e32eddc9f2b5794731b804ea.zip |
Start putting file system together for admin settings, no where near complete
Diffstat (limited to 'src/templates/admin')
-rw-r--r-- | src/templates/admin/settings.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/templates/admin/settings.html b/src/templates/admin/settings.html new file mode 100644 index 00000000..b3d6b32a --- /dev/null +++ b/src/templates/admin/settings.html @@ -0,0 +1,26 @@ +<html>
+ <head>
+ <title>Settings manager</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
+ <link rel="stylesheet" href="../static/css/admin.css">
+ <script src="../static/js/jquery.js"></script>
+ <script src="../socket.io/socket.io.js"></script>
+ <script src="../static/js/admin/settings.js"></script>
+ </head>
+ <body>
+ <div id="wrapper">
+
+ <% if (errors.length) { %>
+ <div class="errors">
+ <% errors.forEach(function (item) { %>
+ <div class="error"><%= item.toString() %></div>
+ <% }) %>
+ </div>
+ <% } %>
+
+
+ <h1>Etherpad Lite Settings</h1>
+ <div class="settings"></div>
+ </div>
+ </body>
+</html>
|