# File examples/camping-abingo-test/camping-abingo-test.rb, line 467
        def signin
                div.xyz do
                        h1 'XYZ SAAS Application Sign-In'
                        div @info if @info
                        
                        form :action => R(SignIn), :method => 'post' do
                                label 'Username', :for => 'username'; br
                                input :name => 'username', :type => 'text'; br

                                label 'Password', :for => 'password'; br
                                input :name => 'password', :type => 'text'; br

                                input :type => 'submit', :name => 'signin', :value => 'Sign-In'
                        end
                end
        end