summaryrefslogtreecommitdiff
path: root/example/views/layout.erb
blob: f4eae0aff71c92ab0e32c20d2bff1b3dc79eea7e (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
<!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>

    <%= yield %>

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

  </body>
</html>