#!/usr/bin/perl use strict; use warnings; use CGI; my $q = CGI->new(); my %v = $q->Vars(); if (exists $v{do_renewpassword}) { print $q->header(); print $v{do_renewpassword}; exit; } local $/; print $q->header(); print $q->start_html(); print ; print $q->end_html(); exit;