Slide 9
Slide 9 text
HTMLフォーム面倒
[:div.form-group
[:label {:for "input-email"} "Email address"]
[:input#input-email.form-control
{:type :email :name :email
:class (when (contains? errors :email) "is-invalid")
:value (:email values)
:placeholder "Enter email"}]
[:div.invalid-feedback (:email errors)]
[:small.form-text.text-muted
"We'll never share your email with anyone else."]]