I can't see any way to specify a specific layout for sinatra-authentication views. It would be useful to be able to. My workaround is to monkeypatch the Helper module ``` ruby module Sinatra module Helpers def use_layout? return :authlayout end end end ```