Statistics
| Branch: | Tag: | Revision:

root / snf-saas-app / synnefo / saas / templates / saas / index.html @ 122e6b29

History | View | Annotate | Download (2.4 kB)

1
{% extends "saas/base.html" %}
2

    
3
{% block content %}
4

    
5
<div class="row">
6

    
7
  <!-- Side Bar -->
8

    
9
  <div class="four mobile-four columns">
10

    
11
    <img src="http://placehold.it/500x500&text=Logo">
12

    
13
    <div class="hide-for-small panel">
14
      <h3>Step 1</h3>
15
      <h5 class="subheader">Choose the software you want installed to your new VM: </h5>
16
    </div>
17

    
18
  </div>
19

    
20
  <!-- End Side Bar -->
21
  
22
  <!-- Thumbnails -->
23
  <form action="/saas/software/" method="post">
24

    
25
    <div class="eight columns">
26
      <label>VM Name</label>
27
      {{ form.name }}
28
      {{ form.name.errors }}
29
    </div>
30
    
31

    
32
    <div class="eight columns">
33

    
34
      <div class="row">
35

    
36
        <div class="four mobile-two columns">
37
          <img src="http://placehold.it/1000x1000&text=Thumbnail">
38

    
39
          <div class="panel">
40
            <h5>Software Name</h5>
41
            <input type="checkbox" name="software" value="soft1"><br>
42
            
43
          </div>
44
        </div>
45

    
46
        <div class="four mobile-two columns">
47
          <img src="http://placehold.it/500x500&text=Thumbnail">
48

    
49
          <div class="panel">
50
            <h5>Software Name</h5>
51
            <input type="checkbox" name="software" value="soft2"><br>
52
            
53
          </div>
54
        </div>
55

    
56
        <div class="four mobile-two columns">
57
          <img src="http://placehold.it/500x500&text=Thumbnail">
58

    
59
          <div class="panel">
60
            <h5>Software Name</h5>
61
            <input type="checkbox" name="software" value="soft3"><br>
62
            
63
          </div>
64
        </div>
65

    
66
        <div class="four mobile-two columns">
67
          <img src="http://placehold.it/500x500&text=Thumbnail">
68

    
69
          <div class="panel">
70
            <h5>Software Name</h5>
71
            <input type="checkbox" name="software" value="soft4"><br>
72
            
73
          </div>
74
        </div>
75

    
76
        <div class="four mobile-two columns">
77
          <img src="http://placehold.it/500x500&text=Thumbnail">
78

    
79
          <div class="panel">
80
            <h5>Software Name</h5>
81
            <input type="checkbox" name="software" value="soft5"><br>
82
            
83
          </div>
84
        </div>
85

    
86
        <div class="four mobile-two columns">
87
          <img src="http://placehold.it/500x500&text=Thumbnail">
88

    
89
          <div class="panel">
90
            <h5>Software Name </h5>
91
            <input type="checkbox" name="software" value="soft6"><br>
92
          </div>
93
        </div>
94
      <!-- End Thumbnails -->
95
      </div>
96
    </div>
97
  <!-- End Managed By -->
98
  <hr>
99
  <div align="right">
100
    <input type="submit" class="button" value="Input Submit ยป">
101
  </div>
102
  </form>
103
</div>
104

    
105
{% endblock %}
106