Skip to content

bhabig/basic-sinatra-forms-lab-v-000

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sinatra Forms Lab

Overview

In this lab, you'll practice building forms in Sinatra by creating a basketball team sign-up sheet. Your application will have a basic html form, and will display the data from the form after it has been submitted by the user.

Instructions

  1. Run bundle install

  2. Run bundle exec shotgun

  3. Make a form

    Create a route that responds to a GET request at /newteam. Add a form to the newteam.erb template and render it in the GET /newteam route. The form should have fields for: Team name ('name') Coach ('coach') Point Guard ('pg') Shooting Guard ('sg') Power Forward ('pf') Small Forward ('sf') Center ('c')

It should look something like this:

form for basketball team

  1. Handle form submission

    Create a route that responds to a POST request at /team Have the form send a POST request to this route. Upon submission, pass the submitted data to the team.erb template.

  2. Final Output

    Update the team.erb template so when you post to this form, it displays the name of the team and each member of the team.

    Your view should display something like this:

    completed form

  3. Deliverables

Pass the tests! Make sure you read the test output carefully!

Resources

View Sinatara Forms Lab on Learn.co and start learning to code for free.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 80.9%
  • HTML 19.1%