blob: f3e98b6ebdcd34a72e2c06f840b00033488b9476 [file] [log] [blame]
Iftekharul Islam34714092017-09-06 10:45:27 -05001<!-- Unexpected error -->
Iftekharul Islama1d238f2018-02-26 12:29:45 -06002<section class="modal" aria-hidden="true" aria-labelledby="modalTitle" aria-describedby="modalDescription" role="dialog" ng-class="{'active': dataService.displayErrorModal}">
Iftekharul Islam34714092017-09-06 10:45:27 -05003 <div class="modal__upload-fail" role="document">
Iftekharul Islama1d238f2018-02-26 12:29:45 -06004 <div class="screen-reader-offscreen modal-description">{{dataService.errorModalDetails.title}}</div><!-- accessibility only; used for screen readers -->
Iftekharul Islam34714092017-09-06 10:45:27 -05005 <div class="page-header ">
Iftekharul Islama1d238f2018-02-26 12:29:45 -06006 <span class="icon icon__warning inline"><span class="accessible-text" role="alert">{{dataService.errorModalDetails.title}}</span></span>
7 <h1 class="modal-title h4 inline">{{dataService.errorModalDetails.title}}</h1>
Iftekharul Islam34714092017-09-06 10:45:27 -05008 </div>
9 <div class="modal__content">
Iftekharul Islama1d238f2018-02-26 12:29:45 -060010 <p>{{dataService.errorModalDetails.description}}</p>
Iftekharul Islam34714092017-09-06 10:45:27 -050011 </div>
12 <div class="modal__button-wrapper">
Iftekharul Islama1d238f2018-02-26 12:29:45 -060013 <button class="inline btn-primary" ng-click="dataService.deactivateErrorModal()">Close</button>
Iftekharul Islam34714092017-09-06 10:45:27 -050014 </div>
15 </div>
16</section>
Iftekharul Islama1d238f2018-02-26 12:29:45 -060017<div class="modal-overlay" tabindex="-1" ng-class="{'active': dataService.displayErrorModal}"></div>