Right way to customize Login Engine

I’ve got Login Engine installed as a plugin and it’s working. Now I
need to do some customization. First, the home page. This seems pretty
simple.

  • Generate a new controller MyLogin
  • Have it inherit from LoginController (require ‘login_engine’)
  • Override home

Is this right?

But what about customizing the view(s)? Should I be making new views
for MyLogin and will they get used instead?

I guess this is really a simple Ruby inheiritance question (or
questions). But I want to make sure I’m doing it the right Rails way.

thx,
–dwf