blob: 7238b35472e770022de4d5e31488fe213ca8e8d2 (
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 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" />
<link rel="stylesheet" type="text/css" href="example.css" />
</head>
<body>
<div class="container">
<div class="row-fluid">
<div class="hero-unit span12">
<h1>Secure Remote Passwords</h1>
<p>
Login with a password hidden from 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/lib/SHA256.js"> </script>
<script type="text/javascript" src="srp-js/lib/prng4.js"> </script>
<script type="text/javascript" src="srp-js/lib/rng.js"> </script>
<script type="text/javascript" src="srp-js/lib/jsbn.js"> </script>
<script type="text/javascript" src="srp-js/lib/jsbn2.js"> </script>
<script type="text/javascript" src="srp-js/lib/srp.js"> </script>
<script type="text/javascript" src="srp-js/lib/srp_register.js"> </script>
<script type="text/javascript" src="srp.js"> </script>
</body>
</html>
|