Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created June 7, 2014 01:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shigemk2/b931a29c068d8b5e71cc to your computer and use it in GitHub Desktop.
Save shigemk2/b931a29c068d8b5e71cc to your computer and use it in GitHub Desktop.
doctype
html
head
meta(charset="utf-8")
title サンプル
link(rel="stylesheet" href="style.css")
body
h1= title
p= msg + '(' + form.myname + ',' + form.mail + ',' + form.age + ')'
form(method='post' ,action='/')
table
tr
td
input(type='text',name='myname',value=form.myname)
tr
td
input(type='text',name='mail',value=form.mail)
tr
td
input(type='text',name='age',value=form.age)
tr
td
input(type='submit')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment