summaryrefslogtreecommitdiffstats
path: root/lib/toaster/toastergui/templates/newcustomimage_modal.html
blob: b1b5148c0896e2b3f5eea3a1f3812dcf207de0c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{% load static %}

<script src="{% static 'js/newcustomimage_modal.js' %}"></script>
<script>
  $(document).ready(function (){
    try {
      newCustomImageModalInit();
    } catch (e) {
      document.write("Sorry, An error has occurred loading this page");
      console.warn(e);
    }
  });
</script>

<div class="modal hide fade in" id="new-custom-image-modal" aria-hidden="false">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    <h3>Name your custom image</h3>
  </div>
  <div class="modal-body">
    <div class="row-fluid">
      <span class="help-block span8">Image names must be unique. They should not contain spaces or capital letters, and the only allowed special character is dash (-).<p></p>
      </span></div>
    <div class="control-group controls">
      <input type="text" class="huge" placeholder="Type the custom image name" required>
        <span class="help-block error" id="invalid-name-help" style="display:none"></span>
      </div>
    </div>
    <div class="modal-footer">
      <button id="create-new-custom-image-btn" class="btn btn-primary btn-large" data-original-title="" title="" disabled>Create custom image</button>
    </div>
</div>