@@ -79,6 +75,11 @@ local $SIG{__DIE__}; #disable Mason error trap
my $DEBUG = 0;
+my $head = '
+
+
+';
+
my $census_year = $cgi->param('census_year');
my $pre = $cgi->param('pre');
my $zip_code = $cgi->param('zip_code');
--
cgit v1.2.1
From 0d62051d0e0ed3bd2e26e1a619dcb6190b653ab8 Mon Sep 17 00:00:00 2001
From: Christopher Burger
Date: Thu, 5 Oct 2017 10:17:36 -0400
Subject: RT# 76968 - Added logo only header file
---
httemplate/elements/header-logo.html | 114 +++++++++++++++++++++++++++++++++++
1 file changed, 114 insertions(+)
create mode 100644 httemplate/elements/header-logo.html
diff --git a/httemplate/elements/header-logo.html b/httemplate/elements/header-logo.html
new file mode 100644
index 000000000..f272c56f6
--- /dev/null
+++ b/httemplate/elements/header-logo.html
@@ -0,0 +1,114 @@
+<%doc>
+
+Example:
+
+ <& /elements/header-logo.html',
+ {
+ 'title' => 'Title',
+ 'menubar' => \@menubar,
+ 'etc' => '', #included in tag, for things like onLoad=
+ 'head' => '', #included before closing tag
+ 'nobr' => 0, #1 for no after the title
+ 'no_jquery' => #for use from RT, which loads its own
+ }
+ &>
+
+%doc>
+
+%#
+%# above is what RT declares, should we switch now? hopefully no glitches result
+%# or just fuck it, XHTML died anyway, HTML 5 or bust?
+
+
+
+ <% encode_entities($title) || $title_noescape |n %>
+
+
+
+
+
+
+
+% if ( $mobile ) {
+
+% }
+
+% unless ( $nocss ) {
+
+
+% }
+
+% unless ( $no_jquery ) {
+
+
+
+
+% if ( $FS::CurrentUser::CurrentUser->option('printtofit') ) {
+
+% }
+% }
+ <% include('init_overlib.html') |n %>
+ <% include('rs_init_object.html') |n %>
+
+ <% $head |n %>
+
+%# announce our base path, and the Mason comp path of this page
+
+
+
+ STYLE="margin-top:0; margin-bottom:0; margin-left:0px; margin-right:0px">
+
+
+<%init>
+
+my( $title, $title_noescape, $menubar, $etc, $head ) = ( '', '', '', '', '' );
+my( $nobr, $nocss, $no_jquery ) = ( 0, 0, 0 );
+
+my $mobile;
+
+my $opt = shift;
+$title = $opt->{title};
+$title_noescape = $opt->{title_noescape};
+$menubar = $opt->{menubar};
+$etc = $opt->{etc};
+$head = $opt->{head};
+$nobr = $opt->{nobr};
+$nocss = $opt->{nocss};
+$mobile = $opt->{mobile};
+$no_jquery = $opt->{no_jquery};
+
+my $conf = new FS::Conf;
+
+my $curuser = $FS::CurrentUser::CurrentUser;
+
+my $menu_position = $curuser->option('menu_position')
+ || 'top'; #new default for 1.9
+
+if ( !defined($mobile) ) {
+ $mobile = $curuser->option('mobile_menu',1) && FS::UI::Web::is_mobile();
+}
+if ( $cgi->param('mobile') =~ /^(\d)$/ ) { # allow client to override
+ $mobile = $1;
+}
+
+my($company_name, $company_url);
+my @agentnums = $curuser->agentnums;
+if ( scalar(@agentnums) == 1 ) {
+ $company_name = $conf->config('company_name', $agentnums[0] );
+ $company_url = $conf->config('company_url', $agentnums[0] );
+} else {
+ $company_name = $conf->config('company_name');
+ $company_url = $conf->config('company_url');
+}
+
+%init>
\ No newline at end of file
--
cgit v1.2.1
From b9c2b7cc73ad6455613268ae9e884ca0d34a127d Mon Sep 17 00:00:00 2001
From: Christopher Burger
Date: Fri, 6 Oct 2017 10:36:54 -0400
Subject: RT# 77193 - Added files to alter creditcard or check information via
selfservice
---
.../FS-SelfService/cgi/change_check_pay.html | 23 ++++++++++++++++++++++
.../FS-SelfService/cgi/change_creditcard_pay.html | 23 ++++++++++++++++++++++
.../cgi/process_change_check_pay.html | 3 +++
.../cgi/process_change_creditcard_pay.html | 3 +++
4 files changed, 52 insertions(+)
create mode 100644 fs_selfservice/FS-SelfService/cgi/change_check_pay.html
create mode 100644 fs_selfservice/FS-SelfService/cgi/change_creditcard_pay.html
create mode 100644 fs_selfservice/FS-SelfService/cgi/process_change_check_pay.html
create mode 100644 fs_selfservice/FS-SelfService/cgi/process_change_creditcard_pay.html
diff --git a/fs_selfservice/FS-SelfService/cgi/change_check_pay.html b/fs_selfservice/FS-SelfService/cgi/change_check_pay.html
new file mode 100644
index 000000000..7dd2583c4
--- /dev/null
+++ b/fs_selfservice/FS-SelfService/cgi/change_check_pay.html
@@ -0,0 +1,23 @@
+<%= include('header', 'Change ach payment information') %>
+
+<%= if ( $error ) {
+ $OUT .= qq!Error: $error !;
+ } ''; %>
+
+