diff --git a/Gemfile b/Gemfile index e88578c..569b399 100644 --- a/Gemfile +++ b/Gemfile @@ -41,6 +41,7 @@ group :development do # Access an interactive console on exception pages or by calling 'console' anywhere in the code. # gem 'web-console' gem 'listen' + gem 'sqlite3' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' gem 'spring-watcher-listen' diff --git a/Gemfile.lock b/Gemfile.lock index 223b8fd..dedd391 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -235,6 +235,7 @@ GEM actionpack (>= 4.0) activesupport (>= 4.0) sprockets (>= 3.0.0) + sqlite3 (1.4.2) thor (1.0.1) thread_safe (0.3.6) tilt (2.0.10) @@ -277,6 +278,7 @@ DEPENDENCIES sorcery spring spring-watcher-listen + sqlite3 turbolinks tzinfo-data webpacker diff --git a/app/assets/stylesheets/application.css.scss b/app/assets/stylesheets/application.css.scss index a9523da..71872c4 100644 --- a/app/assets/stylesheets/application.css.scss +++ b/app/assets/stylesheets/application.css.scss @@ -35,6 +35,16 @@ $light: #fff; height: 100%; } +.content { + padding: 30px 60px 50px; + + &>h1 { + margin-bottom: 40px; + } +} + + + body { min-height: 100vh; } diff --git a/app/views/forms/new.html.erb b/app/views/forms/new.html.erb index f1a23c2..1229375 100644 --- a/app/views/forms/new.html.erb +++ b/app/views/forms/new.html.erb @@ -1,5 +1,26 @@ -<%= form_for @form do |f| %> - <%= f.text_field :title %> - <%= f.text_field :thank_you_url %> - <%= f.submit %> -<% end %> +