Welcome screen for new users

This commit is contained in:
Kyle Drake 2015-02-10 19:15:49 -08:00
parent c66a935cb1
commit 84f4c3b3aa
5 changed files with 48 additions and 14 deletions

View file

@ -34,6 +34,12 @@ get '/?' do
erb :index, layout: false
end
get '/welcome' do
require_login
redirect '/' if current_site.plan_type != 'free'
erb :'welcome'
end
get '/tutorials' do
erb :'tutorials'
end