aboutsummaryrefslogtreecommitdiff
path: root/www/authenticate-with-password.html
blob: e000209ffe799dc751141ba30c8b836a51275f95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Persona IMAP Authentication</title>

  <script type="text/javascript" src="https://login.persona.org/include.js"></script>
  <script type="text/javascript" src="https://login.persona.org/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-with-password.js"></script>
</head>
<body>
  <h1>Persona 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>