aboutsummaryrefslogtreecommitdiff
path: root/www/authenticate.html
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2012-10-03 13:16:38 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2012-10-03 13:16:38 +0200
commit3a3aba98206e6c28eb11febebf3854d4b259b924 (patch)
tree67256eba1594f5a81e5723daa74e6e11c8270177 /www/authenticate.html
parent973b7a2a12bd3d81d49c28eb8c9bbdd56b2c2495 (diff)
Move public files to www/.
Diffstat (limited to 'www/authenticate.html')
-rw-r--r--www/authenticate.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/www/authenticate.html b/www/authenticate.html
new file mode 100644
index 0000000..32bd2ed
--- /dev/null
+++ b/www/authenticate.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>BrowserID IMAP Authentication</title>
+
+ <script type="text/javascript" src="https://browserid.org/include.js"></script>
+ <script type="text/javascript" src="https://browserid.org/authentication_api.js"></script>
+
+<!--
+ <script type="text/javascript" src="mozilla/include.js"></script>
+ <script type="text/javascript" src="mozilla/authentication_api.js"></script>
+-->
+
+<!--
+ <script type="text/javascript" src="https://dev.diresworb.org/include.js"></script>
+ <script type="text/javascript" src="https://dev.diresworb.org/authentication_api.js"></script>
+-->
+
+ <script type="text/javascript" src="jquery/jquery.js"></script>
+ <script type="text/javascript" src="authenticate.js"></script>
+</head>
+<body>
+ <h1>BrowserID IMAP Login</h1>
+
+ <form action="#" method="POST" id="auth-form">
+ <table>
+ <tbody>
+ <tr>
+ <td>E-Mail: </td>
+ <td><input type="text" id="email" name="email" disabled="disabled"></input></td>
+ </tr>
+ <tr>
+ <td>Password: </td>
+ <td><input type="password" id="password" name="password"></input></td>
+ </tr>
+ </tbody>
+ </table>
+ <div class="button-box">
+ <button class="cancel">Cancel</button>
+ <input type="submit" value="Log in"></input>
+ </div>
+ </form>
+</body>
+</html>