Added pricing page.

master
Manager Bot 3 years ago
parent cf99b6ec85
commit fa918353db
  1. 1
      Web/lib/MJB/Web.pm
  2. 6
      Web/templates/layouts/standard.html.ep
  3. 9
      Web/templates/root/pricing.html.ep

@ -177,6 +177,7 @@ sub startup ($self) {
$r->get ( '/' )->to( 'Root#index' )->name('show_homepage' );
$r->get ( '/about' )->to( 'Root#about' )->name('show_about' );
$r->get ( '/contact' )->to( 'Root#contact' )->name('show_contact' );
$r->get ( '/pricing' )->to( 'Root#pricing' )->name('show_pricing' );
# User registration, login, and logout.
$r->get ( '/register' )->to( 'Auth#register' )->name('show_register' );

@ -121,6 +121,12 @@
Contact
</a>
</li>
<li class="nav-item">
<a class="nav-link <%= $sb_active eq "pricing" ? "active" : "" %>" aria-current="page" href="<%= $c->url_for( 'show_pricing' ) %>">
<span data-feather="info"></span>
Pricing
</a>
</li>
</ul>
% if ( $c->stash->{person} ) {

@ -0,0 +1,9 @@
% layout 'standard', title => 'Pricing', sb_active => 'pricing';
<h2 class="mt-5 display-6 mb-4">Pricing</h2>
<p class="fs-5 text-muted"><a href="<%= $c->url_for( 'show_register' ) %>">Register an account for $7/mo.</a></p>
<p class="fs-5 text-muted">Your account includes creating unlimited blogs, posts, and pages.</p>
Loading…
Cancel
Save