Newer
Older
Sinatra_practice / sinatra_form00.rb
@Yusuke Yusuke on 28 Jul 2020 329 bytes add sinatra_practice
#!/usr/bin/ruby
#-*- coding: utf-8 -*-

require 'sinatra'
require 'erb'

get '/post' do
    @name = ""
  erb :index
end

post '/' do
  @name = @params[:name]
  erb :index
end

__END__
@@index
<html>
<body>
  <form action="/" method="post">
    <input type="text" name="name">
    <input type="submit">
  </form>
</body>
</html>