blob: e3bf571958af37f8078ae0ffb5dc9e49c9e3c609 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
require 'sinatra/base'
require 'sinatra/url_for'
require 'tilt/erb'
require_relative 'lib/registration'
class RegistrationApp < Sinatra::Base
helpers Sinatra::UrlForHelper
include ERB::Util
enable :sessions
get '/' do
@band = Band.new
3.times { @band.songs << Song.new }
erb :index
end
post '/submit' do
if request.form_data?
@band = Band.new(request['band'])
if @band.valid?
generate_pdf_for @band
send_registration_emails_for @band
erb :submitted
else
erb :index
end
end
end
run! if app_file == $0
end
|