76 lines
4.0 KiB
HTML
Raw Normal View History

2020-10-10 19:26:30 -06:00
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<div class="page" data-name="home">
<div class="navbar">
2021-01-23 15:41:11 -07:00
<div class="navbar-bg"></div>
2020-10-10 19:26:30 -06:00
<div class="navbar-inner">
2021-01-22 12:06:20 -07:00
<div class="title">{{js "SETTINGS.branding.apptitle"}}</div>
2020-10-10 19:26:30 -06:00
<div class="right">
{{#if escapehatch}}
<a href="https://helena.express" class="link external">
<i class="fal fa-portal-exit"></i>
<span>Back to Website</span>
</a>
{{/if}}
2021-05-08 17:10:23 -06:00
<a href="/settings" class="link icon-only hapticbtn">
2020-10-10 19:26:30 -06:00
<i class="fal fa-cog"></i>
</a>
</div>
</div>
</div>
<div class="page-content noselect">
<div class="row justify-content-center margin-top">
<div class="col-100 medium-90 xlarge-75 margin-horizontal">
<div class="row justify-content-center">
<div class="col-100 small-50 large-33 no-margin-vertical">
<div class="card hapticbtn pointercursor margin-bottom" onclick="router.navigate('/track');">
<div class="card-content padding display-flex justify-content-center align-items-center">
<h2 class="no-margin"><i class="fad fa-search"></i></h2>
<span style="font-weight: 700; margin-left: 1em;">Track Package</span>
</div>
</div>
<div class="card hapticbtn pointercursor" onclick="router.navigate('/rates');">
<div class="card-content padding display-flex justify-content-center align-items-center">
<h2 class="no-margin"><i class="fad fa-calculator"></i></h2>
<span style="font-weight: 700; margin-left: 1em;">Shipping Rates</span>
</div>
</div>
</div>
{{#if accountsetup}}{{else}}
<div class="col-100 small-50 large-33 no-margin-vertical" id="finishaccountsetupnag">
<div class="card hapticbtn pointercursor" onclick="router.navigate('/account');">
<div class="card-content text-align-center padding">
<h1 class="no-margin"><i class="fad fa-user-check"></i></h1>
<br />
<span style="font-weight: 700;">Finish Account Setup</span>
<br />
<span>You need to set up an account to use drop boxes
and earn rewards points. It only takes a minute,
<span class="clicktext">click</span><span class="taptext">tap</span>
here to get started!</span>
</div>
</div>
</div>
{{/if}}
2020-10-10 19:26:30 -06:00
{{#each pages}}
<div class="col-100 small-50 large-33 no-margin-vertical">
2021-08-14 14:38:55 -06:00
<div class="card hapticbtn pointercursor" onclick="router.navigate('{{href}}');">
<div class="card-content text-align-center padding">
2020-10-10 19:26:30 -06:00
<h1 class="no-margin"><i class="{{icon}}"></i></h1>
<br />
<span style="font-weight: 700;">{{title}}</span>
<br />
<span>{{text}}</span>
2020-10-10 19:26:30 -06:00
</div>
</div>
</div>
{{/each}}
</div>
</div>
</div>
</div>
</div>