1*c15f66b0SDixsie Wolmers<div class="uib-modal__content">
2*c15f66b0SDixsie Wolmers  <div class="modal-header">
3*c15f66b0SDixsie Wolmers    <h2 class="modal-title" id="modal_label">
4*c15f66b0SDixsie Wolmers      Certificate Signing Request (CSR)
5*c15f66b0SDixsie Wolmers    </h2>
6*c15f66b0SDixsie Wolmers    <button
7*c15f66b0SDixsie Wolmers      type="button"
8*c15f66b0SDixsie Wolmers      class="btn  btn--close"
9*c15f66b0SDixsie Wolmers      ng-click="$dismiss()"
10*c15f66b0SDixsie Wolmers      aria-label="close">
11*c15f66b0SDixsie Wolmers      <icon file="icon-close.svg" aria-hidden="true"></icon>
12*c15f66b0SDixsie Wolmers    </button>
13*c15f66b0SDixsie Wolmers  </div>
14*c15f66b0SDixsie Wolmers    <div class="modal-body">
15*c15f66b0SDixsie Wolmers      <span id="csrCode" class="add-csr__container-csr-code">{{ csrCode }}</span>
16*c15f66b0SDixsie Wolmers    </div>
17*c15f66b0SDixsie Wolmers    <div class="modal-footer">
18*c15f66b0SDixsie Wolmers      <button
19*c15f66b0SDixsie Wolmers        type="button"
20*c15f66b0SDixsie Wolmers        class="btn btn-secondary"
21*c15f66b0SDixsie Wolmers        clipboard
22*c15f66b0SDixsie Wolmers        text="csrCode"
23*c15f66b0SDixsie Wolmers        on-copied="copySuccess(event)"
24*c15f66b0SDixsie Wolmers        on-error="copyfailed(err)">
25*c15f66b0SDixsie Wolmers        <span ng-if="!copied">Copy</span>
26*c15f66b0SDixsie Wolmers        <span ng-if="copied">
27*c15f66b0SDixsie Wolmers          <icon aria-hidden="true" file="icon-check.svg"></icon>
28*c15f66b0SDixsie Wolmers          <span>Copied</span>
29*c15f66b0SDixsie Wolmers        </span>
30*c15f66b0SDixsie Wolmers      </button>
31*c15f66b0SDixsie Wolmers      <button
32*c15f66b0SDixsie Wolmers        type="button"
33*c15f66b0SDixsie Wolmers        class="btn btn-primary">
34*c15f66b0SDixsie Wolmers        <a ng-href="data:text/json;charset=utf-8,{{ csrCode }}"
35*c15f66b0SDixsie Wolmers          download="csrCode.txt"
36*c15f66b0SDixsie Wolmers          class="add-csr__text-download">
37*c15f66b0SDixsie Wolmers          Download
38*c15f66b0SDixsie Wolmers        </a>
39*c15f66b0SDixsie Wolmers      </button>
40*c15f66b0SDixsie Wolmers    </div>
41*c15f66b0SDixsie Wolmers  </div>