This repository has been archived by the owner on Jan 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #291 from jeznorth/EPIC-1270
[EPIC-1270] Intro Modal Bug Fix
- Loading branch information
Showing
2 changed files
with
56 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
|
||
<ui-view class="main-panel home-view" id="main-content-section"> | ||
<ui-view class="main-panel home-view" | ||
id="main-content-section"> | ||
|
||
<div ng-if="!seenOnce" class="welcome-alert alert alert-success alert-dismissible" role="alert"> | ||
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button> | ||
<h2>EAO Project Information & Collaboration System</h2> | ||
<p>Welcome to the BC Environmental Assessment Office’s new web-based Project Information and Collaboration System (EPIC), which is aimed at improving the efficiency and transparency of the provincial environmental assessment process by providing citizens and stakeholders with more intuitive access to project data and information.</p> | ||
<p>EPIC is being launched as a “beta” – a fully-functional starting point upon which to build continuous improvements. As such, we’re seeking your feedback on how to make it better meet your needs. To do so, please send us an email at <a href="mailto:[email protected]">[email protected]</a> or <a href ui-sref="contact">click here</a> to learn more.</p> | ||
<div class="clearfix"> | ||
<button class="btn btn-success pull-right" data-dismiss="alert" aria-label="Close">Get Started</button> | ||
<div class="welcome-dialog alert alert-dismissable" | ||
ng-if="!seenOnce" | ||
role="alert"> | ||
<div class="welcome-dialog__content"> | ||
<h3>EAO Project Information & Collaboration System</h3> | ||
<p>Welcome to the BC Environmental Assessment Office’s new web-based Project Information and Collaboration System (EPIC), which is aimed at improving the efficiency and transparency of the provincial environmental assessment process by providing citizens and stakeholders with more intuitive access to project data and information.</p> | ||
<p>EPIC is being launched as a “beta” – a fully-functional starting point upon which to build continuous improvements. As such, we’re seeking your feedback on how to make it better meet your needs. To do so, please send us an email at <a href="mailto:[email protected]">[email protected]</a> or <a href ui-sref="contact">click here</a> to learn more.</p> | ||
<div class="buttons clearfix"> | ||
<button class="btn btn-primary pull-right" | ||
data-dismiss="alert" | ||
aria-label="Close"> | ||
Get Started | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|