Skip to content

Instantly share code, notes, and snippets.

@benlovell
Created August 30, 2009 18:31
Show Gist options
  • Save benlovell/178072 to your computer and use it in GitHub Desktop.
Save benlovell/178072 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'sinatra'
require 'sinatra/captcha'
require 'erb'
get '/' do
erb :captcha
end
post '/' do
halt(401, "invalid captcha") unless captcha_pass?
"passed!"
end
__END__
@@ captcha
<form method="post" action="/">
<%= captcha_image_tag %>
<%= captcha_answer_tag %>
<input type="submit" value="Submit!">
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment