summaryrefslogtreecommitdiffstats
path: root/lib/toaster/toastergui/templates/editcustomimage_modal.html
blob: fd998f63ebc16c1ec01441ce06b936584a170148 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!--
modal dialog shown on the build dashboard, for editing an existing custom image
-->
<div class="modal hide fade in" aria-hidden="false" id="edit-custom-image-modal">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    <h3>Select custom image to edit</h3>
  </div>
  <div class="modal-body">
    <div class="row-fluid">
      <span class="help-block">
        Explanation of what this modal is for
      </span>
    </div>
    <div class="control-group controls">
      <input type="text" class="huge" placeholder="input box" required>
      <span class="help-block error" style="display:none">Error text</span>
    </div>
  </div>
  <div class="modal-footer">
    <button class="btn btn-primary btn-large" disabled>Action</button>
  </div>
</div>