From a23fb3047017f9038169d525e394d1fdf997a1ce Mon Sep 17 00:00:00 2001 From: Alex Smolen Date: Tue, 25 Sep 2012 19:35:55 -0700 Subject: [PATCH] Added link about password-less logins --- README.rdoc | 2 ++ test/dummy/app/views/application/index.html.erb | 3 +++ 2 files changed, 5 insertions(+) diff --git a/README.rdoc b/README.rdoc index 7c25bee..1285d07 100644 --- a/README.rdoc +++ b/README.rdoc @@ -3,6 +3,8 @@ the need for passwords. Instead, it uses tokens sent to an email address, similar to most forgot password functionality. These tokens created long-lived sessions that can be tracked and revoked easily. +[Ben Brown](http://ilovebenbrown.com/) wrote a great article about [password-less logins](http://notes.xoxco.com/post/27999787765/is-it-time-for-password-less-login), the same concept implemented by NoPassword. + NoPassword is structured as a Rails Engine, which you can mount in your routes file: diff --git a/test/dummy/app/views/application/index.html.erb b/test/dummy/app/views/application/index.html.erb index e8f8db2..70fd793 100644 --- a/test/dummy/app/views/application/index.html.erb +++ b/test/dummy/app/views/application/index.html.erb @@ -57,6 +57,9 @@ If you ever need to log in from somewhere else, you can request another email with a link that will log you in wherever you are.

+ Ben Brown wrote a great article about password-less logins, the same concept implemented by NoPassword. +

+

Check out the code on Github. Built by @alsmola.