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

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

                                input :type => 'submit', :name => 'signup', :value => 'Sign-Up'
                        end
                end
        end