Sha256: 7a103d6b2c6abd93cc75e8cbede09df326da402a0e5ca2049cb25d31f7c515ea
Contents?: true
Size: 608 Bytes
Versions: 10
Compression:
Stored size: 608 Bytes
Contents
require 'sinatra' get '/' do <<-EOHTML <a href="/insecure">Insecure</a> <a href="/secure">Secure</a> EOHTML end get '/insecure' do <<-EOHTML <form name="insecure"> <input type='password' /> </form> <form id='insecure_2'> <input type='password' /> </form> EOHTML end get '/secure' do <<-EOHTML <form> <input name='secure' type='password' autocomplete="off"/> </form> <form autocomplete="off"> <input name='secure' type='password'/> </form> EOHTML end
Version data entries
10 entries across 10 versions & 1 rubygems