]> iEval git - plack-app-gruntmaster.git/blobdiff - lib/Gruntmaster/Page/Account.pm
Do not show empty contest categories
[plack-app-gruntmaster.git] / lib / Gruntmaster / Page / Account.pm
index f757e9fe08b859b4853627bac9cf0a1889782ae5..be27aff59ecd3d702c127ab55faea8f13c695893 100644 (file)
@@ -3,17 +3,12 @@ package Gruntmaster::Page::Account;
 use 5.014000;
 use strict;
 use warnings;
-use parent qw/Exporter/;
-our @EXPORT_OK = qw/generate/;
+use Gruntmaster::Page::Base account => 'Account';
+our @ISA = qw/Gruntmaster::Page::Base/;
 our $VERSION = '0.001';
 
-use constant TITLE => 'Account';
-
-use HTML::Template::Compiled;
-use Gruntmaster::Page::Common qw/header footer patch_templates/;
-
-my %templates = (
-  en => <<'HTML',
+use constant TEMPLATES => {
+       en => <<'HTML',
 <div id="result"></div>
 
 <h1>Register</h1>
@@ -46,15 +41,6 @@ Confirm new password:<br>
 <input type="submit" value="Change password">
 </form>
 HTML
-);
-
-patch_templates %templates, 'account';
-
-$templates{$_}  = header($_, TITLE) . $templates{$_} for keys %templates;
-$templates{$_} .= footer $_ for keys %templates;
-
-sub generate{
-  HTML::Template::Compiled->new(scalarref => \$templates{$_[1]})->output
-}
+};
 
 1
This page took 0.017248 seconds and 4 git commands to generate.