flash messages, formhandler (not sending yet)

This commit is contained in:
2022-12-09 17:19:57 +02:00
parent 4c4b660d58
commit 007698d5c4
5 changed files with 45 additions and 3 deletions

10
lib/form_handler.rb Normal file
View File

@ -0,0 +1,10 @@
class FormHandler
def handle_form(section , data )
puts "Section on page : #{section.page.name}"
data.each do |name , value|
puts "#{name}: #{value}"
end
end
end