diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-04-17 18:43:42 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-04-17 18:43:42 -0700 |
commit | f630d74ba5579f18e4c65733b13081f5afed9229 (patch) | |
tree | fdce64e93bb603031ba38852c27e13e7a3fee0c1 /fs_selfservice | |
parent | e8bfdb66f2279f138c3edb46dc506d10958325b1 (diff) |
wordpress plugin, RT#75279
Diffstat (limited to 'fs_selfservice')
-rw-r--r-- | fs_selfservice/wordpress/example_selfservice.php | 44 |
1 files changed, 40 insertions, 4 deletions
diff --git a/fs_selfservice/wordpress/example_selfservice.php b/fs_selfservice/wordpress/example_selfservice.php index 92da5bd90..ae588bf28 100644 --- a/fs_selfservice/wordpress/example_selfservice.php +++ b/fs_selfservice/wordpress/example_selfservice.php @@ -26,15 +26,50 @@ error_log( "COOKIE: ". $_COOKIE['freeside_session_id'] ); ?> -<P>Hello <?php echo htmlspecialchars($name); ?></P> +<h3>Billing</h3> + +<p><big><strong>Name</strong></big></p> +<p><?php echo htmlspecialchars($name); ?></p> <?php if ( $signupdate_pretty ) { ?> - <P>Thank you for being a customer since <?php echo $signupdate_pretty; ?></P> + <p><big><strong>Signup Date</strong></big></p> + <p><?php echo htmlspecialchars($signupdate_pretty); ?></p> <?php } ?> -<P>Your account number is: <B><?php echo $display_custnum ?></B></P> +<p><big><strong>Username</strong></big></p> +<p>me@gmail.com</p> + +<p><big><strong>Account Number</strong></big></p> +<p><?php echo $display_custnum ?></p> + +<p><big><strong>Address</strong></big></p> +<address> +Box 564, Disneyland<br> +USA +</address> + +<p><big><strong>Email Address</strong></big></p> +<p>me@gmail.com</p> + +<br> +<br> +<br> +<p><big><strong>Total Balance</strong></big></p> +<h4><?php echo $balance_pretty ?></h4> + +<br> +<br> +<br> +<p><big><strong> <font color=" #4682B4">View my Bill</strong></big></font></p> +<p><big><strong> <font color="#4682B4">Change Bill Deliver Options</strong></big></font></p> + + + +<h3>Services</h3> + +<h4><font color="#4682B4"> <i class="fa fa-laptop"> </i> </font> Internet </h4> +<h4><font color="#4682B4"> <i class="fa fa-volume-control-phone"> </i> </font> Voice </h4> -<P>Your current balance is: <B><?php echo $balance_pretty ?></B></P> <?php echo $announcement ?> @@ -48,4 +83,5 @@ your tickets. some notification if there's new responses since your last login anything else? --> + <?php get_footer(); ?> |