|
2 | 2 | %html |
3 | 3 | %head |
4 | 4 | %link{:rel => :stylesheet, :type => "text/css", :href => "http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"} |
| 5 | + %link{:rel => :stylesheet, :type => "text/css", :href => "/css/style.css"} |
5 | 6 | %title Crontab Generator |
6 | 7 | %body |
7 | 8 | .navbar.navbar-inverse.navbar-fixed-top |
8 | | - .container |
| 9 | + .container.main |
9 | 10 | =@crontab |
10 | | - %form{:action => "/", :method => "post"} |
| 11 | + %form.form.form-inline{:action => "/", :method => "post"} |
11 | 12 |
|
12 | | - %fieldset |
| 13 | + .form-group |
13 | 14 | %label{:for => "minute"} Minute |
14 | 15 | %select{:multiple => true, :name => "minute[]", :size => 10, :style => "width: 50px"} |
15 | 16 | -(1..60).each do |m| |
16 | 17 | %option{:value => m} |
17 | 18 | =m |
18 | 19 |
|
19 | | - %fieldset |
| 20 | + .form-group |
20 | 21 | %label{:for => "hour"} Hour of the day |
21 | 22 | %select{:multiple => true, :name => "hour[]", :size => 10, :style => "width: 50px", :id => "hour"} |
22 | 23 | -(1..24).each do |m| |
23 | 24 | %option{:value => m} |
24 | 25 | =m |
25 | 26 |
|
26 | | - %fieldset |
| 27 | + .form-group |
27 | 28 | %label{:for => "day_of_month"} Day of the month |
28 | 29 | %select{:multiple => true, :name => "day_of_month[]", :size => 10, :style => "width: 50px", :id => "day_of_month"} |
29 | 30 | -(1..31).each do |m| |
30 | 31 | %option{:value => m} |
31 | 32 | =m |
32 | 33 |
|
33 | | - %fieldset |
| 34 | + .form-group |
34 | 35 | %label{:for => "month"} Month |
35 | 36 | %select{:multiple => true, :name => "month[]", :size => 10, :style => "width: 50px", :id => "month"} |
36 | 37 | -(1..12).each do |m| |
37 | 38 | %option{:value => m} |
38 | 39 | =m |
39 | 40 |
|
40 | | - %fieldset |
| 41 | + .form-group |
41 | 42 | %label{:for => "day_of_week"} Day of the week |
42 | 43 | %select{:multiple => true, :name => "day_of_week[]", :size => 10, :style => "width: 50px", :id => "day_of_week"} |
43 | 44 | -(1..7).each do |m| |
|
0 commit comments