module Formic class Password < Input def _initialize name=nil, options={}, &block super @options[:value] = '' @options[:type] = 'password' return self end end end