]> iEval git - gruntmaster-page.git/blobdiff - lib/Gruntmaster/Page/Account.pm
Make all generators inherit from a common base
[gruntmaster-page.git] / lib / Gruntmaster / Page / Account.pm
index 20acc6ab30e6731f6f0786acd3d18edb8915426c..be27aff59ecd3d702c127ab55faea8f13c695893 100644 (file)
@@ -3,15 +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 HTML::Template::Compiled;
-use Gruntmaster::Page::Common qw/cook_templates reload_templates/;
-
-my %orig_templates = (
-  en => <<'HTML',
+use constant TEMPLATES => {
+       en => <<'HTML',
 <div id="result"></div>
 
 <h1>Register</h1>
@@ -44,13 +41,6 @@ Confirm new password:<br>
 <input type="submit" value="Change password">
 </form>
 HTML
-);
-
-my %templates = cook_templates %orig_templates, account => 'Account';
-
-sub generate{
-  %templates = cook_templates %orig_templates, account => 'Account' if reload_templates;
-  HTML::Template::Compiled->new(scalarref => \$templates{$_[1]})->output
-}
+};
 
 1
This page took 0.018975 seconds and 4 git commands to generate.