class OmniAuth::Form

def header(title, header_info)

def header(title, header_info)
  @html << <<-HTML
  <!DOCTYPE html>
  <html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>#{title}</title>
    #{css}
    #{header_info}
  </head>
  <body>
  <h1>#{title}</h1>
  <form method='#{options[:method]}' #{"action='#{options[:url]}' " if options[:url]}noValidate='noValidate'>
  HTML
  self
end