class ClientsController < ApplicationController
# have to be signed in currently to see this screen
before_filter :signed_in_user
def index
# don't use the rails tutorial layout for this page
render :layout => 'client'
end