summaryrefslogtreecommitdiff
path: root/example/views/layout.erb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-06-26 18:13:22 +0200
committerAzul <azul@leap.se>2012-06-26 18:13:22 +0200
commitf32497f143ef95264706dba27ce3e7a26d7ba6a4 (patch)
treed7296bdc0522206ad957c8131b4e4bb6fbbffb79 /example/views/layout.erb
parentfb5ea9059647ca8ee5cea568f47551da547b70f7 (diff)
moved the sample app to it's own subdirectory
Diffstat (limited to 'example/views/layout.erb')
-rw-r--r--example/views/layout.erb27
1 files changed, 27 insertions, 0 deletions
diff --git a/example/views/layout.erb b/example/views/layout.erb
new file mode 100644
index 0000000..c68ac23
--- /dev/null
+++ b/example/views/layout.erb
@@ -0,0 +1,27 @@
+<!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="srp.js"> </script>
+
+ </body>
+</html>