An open API service indexing awesome lists of open source software.

https://github.com/yuler/explore-hotrails


https://github.com/yuler/explore-hotrails

Last synced: 9 months ago
JSON representation

Awesome Lists containing this project

README

          

# explore-hotrails

> This repo is practice for https://www.hotrails.dev/ tutorial

```erb
<%= form_with model: quote, html: { class: "quote form" } do |f| %>
<% if quote.errors.any? %>


<%= quote.errors.full_messages.to_sentence.capitalize %>

<% end %>


<%= f.label :name %>
<%= f.text_field :name, autofocus: true, class: "form-control" %>


<%= f.submit class: "btn btn--secondary" %>
<% end %>
```