Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
YStrano
GitHub Repository: YStrano/DataScience_GA
Path: blob/master/april_18/templates/example-lesson/solution-code/views/artists/new.erb
1907 views
<h2>New Artist</h2>

<form action="/artists" method="post">
  <label for="artist[name]">Name:</label>
  <input name="artist[name]">

  <label for="artist[photo_url]">Photo URL:</label>
  <input name="artist[photo_url]">

  <label for="artist[nationality]">Nationality:</label>
  <input name="artist[nationality]">

  <label for="artist[instrument]">Instrument:</label>
  <input name="artist[instrument]">

  <label for="artist[home_address]">Home Address:</label>
  <input name="artist[home_address]">

  <input type="submit" value="Create">
</form>