Update welcome page

This commit is contained in:
rebuilt 2023-03-09 18:30:35 -08:00
parent 98b9134779
commit e5e0d6f6df
20 changed files with 792 additions and 125 deletions

View file

@ -1,4 +1,8 @@
class ContactsController < ApplicationController
def index
@contact = Contact.new
end
def new
@contact = Contact.new
end

View file

@ -1,8 +1,6 @@
class HomeController < ApplicationController
skip_before_action :verify_authenticity_token
def index
@contact = Contact.new
end
def index; end
def create
puts '***************************** Inside home controller *****************************************'