master
 1<div class="modal-dialog" role="document">
 2  <div class="modal-content">
 3    <div class="modal-header">
 4      <h5 class="modal-title">Are you ABSOLUTELY sure?</h5>
 5      <button type="button" class="close" data-dismiss="modal" aria-label="Close">
 6        <span aria-hidden="true">&times;</span>
 7      </button>
 8    </div>
 9    <div class="modal-body">
10      <% if (hasError()) { %>
11        <div class="alert alert-dismissible fade show alert-danger" role="alert">
12          <button type="button" class="close" data-dismiss="alert" aria-label="Close">
13            <span aria-hidden="true">&times;</span>
14          </button>
15          <strong>Error!</strong> <%= errorMessage %>
16        </div>
17      <% } %>
18      <p>
19        This action <b>CANNOT</b> be undone.
20        This will permanently delete <em><%= name %></em> photos, and comments.
21      </p>
22      <p>
23        Please type in the name of the cake to confirm.
24        <input id="confirmation-textbox" type="text" class="form-control" autofocus="" required="" aria-label="Type in the name of the cake to confirm that you want to delete this repository.">
25      </p>
26    </div>
27    <div class="modal-footer">
28      <button id="remove-button" type="button" class="btn btn-danger" disabled="disabled">I understand the consequences, delete this cake</button>
29      <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
30    </div>
31  </div>
32</div>