diff options
author | Azul <azul@leap.se> | 2012-06-26 17:43:50 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2012-06-26 17:43:50 +0200 |
commit | 18ff58e74f9dce2531d3f68f1d2aeecada9ac73f (patch) | |
tree | 638c7c01648905b97f3147a244129ee430b354cc /views/layout.erb | |
parent | d0f10aab67ab679b17bfad76b242ecf7fc7177f6 (diff) |
using layout in the sinatra app
Diffstat (limited to 'views/layout.erb')
-rw-r--r-- | views/layout.erb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/views/layout.erb b/views/layout.erb new file mode 100644 index 0000000..c68ac23 --- /dev/null +++ b/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> |