diff options
Diffstat (limited to 'www/authenticate.html')
-rw-r--r-- | www/authenticate.html | 44 |
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> |