gist

2012年3月1日木曜日

CoffeeKupでBootstrapのフォームを書いてみた

CoffeeKupでBootstrapのフォームを書いてみました。

form method:'post', action:'/post/new', ->
  fieldset ->
    legend @title
    p '.clearfix', ->
      label for:'title', -> 'たいとる'
      p '.input', ->
        input '#title.xlarge', type:'text', name:'post[title]'
    p '.clearfix', ->
      label for:'post', -> 'ないよう'
      p '.input', ->
        textarea '#post.xxlarge', name:'post[body]'
    p '.actions', ->
      input '.btn.primary', type:"submit", value:'こうかい!'
      a '.btn', href:'/', -> 'やめる'

実行結果

Bootstrapいいですね。

0 件のコメント: