blob: ab980c811690d76457dc5ddf6fb8f75f2dc619db (
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
|
<!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.js"> </script>
</body>
</html>
|