#!/usr/bin/perl
$| = 1;
use warnings;
use CGI qw/:standard *p/;
use IPC::Open2;
print header( -type => 'text/html' ), start_html( -title => 'piny-web: Create User'), h1('Create User');
print start_form( -name => 'newuser_form' );
print start_p, "Enter a username and valid email address for the new user. Please remember that the username may only contain alphanumerics, underscores, periods, and dashes. The username may not begin with a dash, nor may it begin with the strings 'git-' or 'ikiwiki-'.", end_p;
print start_p;
print label( { -for => 'username' }, "Username: " ), textfield( -name => 'username' ), "
";
print label( { -for => 'email' }, "Email Address: " ), textfield( -name => 'email' ), "
";
print "