summaryrefslogtreecommitdiff
path: root/public/login.html
blob: 5de78102d0c12f8f43382d90ac5b545008f5d5dc (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
40
41
42
43
44
45
46
47
48

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <title>Secure remote password</title>
  <link rel="stylesheet" type="text/css" href="bootstrap.min.css" />
  <link rel="stylesheet" type="text/css" href="bootstrap-responsive.min.css" />
</head>
<body>

<div class="container">

  <div class="row-fluid">
    <div class="hero-unit span12">
      <h1>Secure Remote Passwords</h1>
      <p>
        Secure remote passwords allow you to login with a password that will be unkown to the server and anyone eavesdropping
      </p>
    </div>
  </div>

  <h2>2. Login</h2>
  <form class="form-horizontal" action="/login" method="POST">
    <legend>Login with the user you <a href="/signup.html">created</a>.</legend>
    <div class="control-group">
      <label class="control-label" for="login">Login</label>
      <input type="text" class"input-xlarge" name="login"></input>
    </div>

    <div class="control-group">
      <label class="control-label" for="password">Password</label>
      <input type="password" class"input-xlarge" name="password"></input>
    </div>

    <div class="form-actions">
      <button type="submit" class="btn btn-primary">Signup</button>
      <a href="/" class="btn">Cancel</a>
    </div>
  </form>

</div>


<script type="text/javascript" src="srp.js"> </script>

</body>
</html>