diff --git a/app/mailers/application_mailer.rb b/app/mailers/application_mailer.rb index 0dae535..ead50cd 100644 --- a/app/mailers/application_mailer.rb +++ b/app/mailers/application_mailer.rb @@ -1,3 +1,2 @@ class ApplicationMailer < ActionMailer::Base end - diff --git a/app/views/pages/index.html.erb b/app/views/pages/index.html.erb index 6812d6e..d78b423 100644 --- a/app/views/pages/index.html.erb +++ b/app/views/pages/index.html.erb @@ -39,7 +39,7 @@ <%= Time.at(meeting['time']/1000).strftime('%b %-d') %>
- <%= Time.at(meeting['time']/1000).strftime('%l:%M %P') %> + <%= Time.at(meeting['time']/1000).in_time_zone('EST').strftime('%l:%M %P') %>
<%- end %> @@ -56,7 +56,7 @@ <%= form_for Contact.new, url: "/contact_us", :remote => true do |f| %>
<%= f.text_field :name, :placeholder => "Name" %> - <%= f.text_field :email, :placeholder => "Email Address" %> + <%= f.text_field :email, :placeholder => "EmailAddress" %> <%= f.text_field :subject, :placeholder => "Subject" %> <%= f.text_area :message, :placeholder => "Message", :rows => 5, :class => "message" %>