Skip to content

Commit

Permalink
Added /subscribed/ route
Browse files Browse the repository at this point in the history
  • Loading branch information
dhochbaum-dcp committed Oct 28, 2024
1 parent d462d6a commit 377d61c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions client/app/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Router.map(function() { // eslint-disable-line
this.route('show-geography', { path: '/projects' });
this.route('disclaimer');
if (config.showAlerts) { this.route('statuses'); }
this.route('subscribed');
this.route('not-found', { path: '/*path' });
this.route('oops');
this.route('my-projects', function() {
Expand Down
4 changes: 4 additions & 0 deletions client/app/routes/subscribed.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import Route from '@ember/routing/route';

export default Route.extend({
});
18 changes: 18 additions & 0 deletions client/app/templates/subscribed.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<div class="cell">
<div class="grid-container">
<div class="grid-x grid-padding-x grid-padding-y align-middle" style="justify-content: center;">
<div class="cell large-8" style="padding-top: 4rem">
<h1 class="header-xxl dcp-orange">Confirm Your ZAP Updates</h1>
<p>&nbsp;</p>
<span style="color:#008e50;">{{fa-icon icon='check-circle' prefix='far' size='2x'}}</span>
<p style="font-size: 1.25rem;"><span style="color:#008e50;">Check email</span> to confirm your ZAP subscription.</p>
<p>You will receive an email to confirm your CDs/Citywide subscriptions. Additionally, the email contains details on how to modify your updates.</p>
<p>&nbsp;</p>
<LinkTo @route="show-geography" class="button" style="font-size: 1.25rem; border-radius: 12px;">Go to Home</LinkTo>
</div>
</div>
</div>
</div>

{{outlet}}

0 comments on commit 377d61c

Please sign in to comment.