CCA Forum Account Sign-Up Sheet

There are two requirements for getting an account on the cca-forum.org collaborative machine: <% require 'cgi' load './cgidb.rb' cgi = CGI.new("html4") @paramlist = [ ["First Name", "first"], ["Last Name", "last"], ["Organization", "org"], ["Email", "email"], ["Phone", "phone"], ["sponsor", "sponsor"], ["preferred login id", "login"], ["preferred group", "group"], ["special comments:", "comment"], ["ssh-public-key", "sshKey"], ["Anti-spam entry", "nospam"] ] %>

First Name:
Last Name:
Organization:
Email:
Phone:
Sponsoring CCA Member
Ssh public key*:
Preferred login id:
Preferred group id:
Anti-spam entry: (Enter last word of first bullet from this page here, or we assume you are a robot).
Special comments:

*this will be cut and pasted into your "authorized_keys" file to give you access to cca-forum.org. You can generate one with Openssh: ssh-keygen
<% dbo = CgiDb.new("db/people", @paramlist) thisEntry = dbo.insertEntry(cgi) if ! thisEntry puts "" puts "

Your entry is empty at this point


" exit 0 # this entry is null end dbo.writeToFile() # Echo the entry out to the user puts "" puts "

Your entry:

" dbo.writeEntry($stdout, thisEntry) %>