|
9 | 9 | <script language="javascript" src="js/process.js"></script>
|
10 | 10 | </head>
|
11 | 11 | <body>
|
12 |
| - <nav class="navbar navbar-default mb30"> |
13 |
| - <span class="navbar-brand">The Batchman</span> |
14 |
| - <p class="navbar-text">Batch to executable</p> |
| 12 | + <nav class="navbar navbar-default mb10"> |
| 13 | + <span class="navbar-brand pt10"><img src="../thebatchman_icon.ico"></span> |
| 14 | + <p class="navbar-text"><code>batch -> executable</code></p> |
15 | 15 | </nav>
|
16 |
| - <div class="container-fluid"> |
| 16 | + <div class="container-fluid pl20 pr20"> |
17 | 17 | <div class="row">
|
18 | 18 | <div class="col-xs-12">
|
19 |
| - <form class="form-horizontal"> |
| 19 | + <form> |
20 | 20 |
|
21 |
| - <div class="form-group is-required is-bat"> |
22 |
| - <label class="col-xs-3 control-label text-right">Batch File <big class="text-danger">*</big></label> |
23 |
| - <div class="col-xs-9"> |
24 |
| - <input type="file" name="batfile" class="form-control input-sm" value="" onchange="changeDistname()"> |
25 |
| - <strong class="form-control-feedback hide">✖</strong> |
26 |
| - </div> |
| 21 | + <div class="form-group is-required is-bat"> |
| 22 | + <label class="control-label">Batch File <big class="text-danger">*</big></label> |
| 23 | + <input type="file" name="batfile" class="form-control input-sm" value="" onchange="changeDistname()"> |
| 24 | + <strong class="form-control-feedback hide">✖</strong> |
| 25 | + </div> |
| 26 | + |
| 27 | + <div class="form-group"> |
| 28 | + <div class="checkbox"> |
| 29 | + <label> |
| 30 | + <input type="checkbox" name="include"> |
| 31 | + Include other files in the source folder ? |
| 32 | + </label> |
27 | 33 | </div>
|
| 34 | + </div> |
28 | 35 |
|
29 |
| - <div class="form-group mb25"> |
30 |
| - <div class="col-xs-9 col-xs-offset-3"> |
31 |
| - <div class="checkbox"> |
32 |
| - <label> |
33 |
| - <input type="checkbox" name="include"> |
34 |
| - Include other files in the source folder ? |
35 |
| - </label> |
36 |
| - </div> |
37 |
| - <div class="checkbox"> |
38 |
| - <label> |
39 |
| - <input type="checkbox" name="hidcon" onchange="changeCompletion()"> |
40 |
| - Hide the console during execution ? |
41 |
| - </label> |
42 |
| - </div> |
43 |
| - <div class="checkbox"> |
44 |
| - <label class="text-muted"> |
45 |
| - <input type="checkbox" name="completion" disabled> |
46 |
| - Try to add feedback after completion ? |
47 |
| - </label> |
48 |
| - </div> |
49 |
| - </div> |
| 36 | + <div class="form-group is-required is-filename"> |
| 37 | + <label class="control-label">Target Filename <big class="text-danger">*</big></label> |
| 38 | + <div class="input-group input-group-sm"> |
| 39 | + <input type="text" name="distname" class="form-control" value=""> |
| 40 | + <span class="input-group-addon">.exe</span> |
50 | 41 | </div>
|
| 42 | + <strong class="form-control-feedback hide">✖</strong> |
| 43 | + </div> |
| 44 | + |
| 45 | + <div class="form-group is-ico"> |
| 46 | + <label class="control-label">Custom Icon</label> |
| 47 | + <input type="file" name="icon" class="form-control input-sm" value=""> |
| 48 | + <strong class="form-control-feedback hide">✖</strong> |
| 49 | + </div> |
51 | 50 |
|
52 |
| - <div class="form-group is-required is-filename"> |
53 |
| - <label class="col-xs-3 control-label text-right">Filename <big class="text-danger">*</big></label> |
54 |
| - <div class="col-xs-9"> |
55 |
| - <div class="input-group input-group-sm"> |
56 |
| - <input type="text" name="distname" class="form-control" value=""> |
57 |
| - <span class="input-group-addon">.exe</span> |
58 |
| - </div> |
59 |
| - <strong class="form-control-feedback hide">✖</strong> |
60 |
| - </div> |
| 51 | + <div class="form-group mb15 mt25"> |
| 52 | + <div class="checkbox"> |
| 53 | + <label> |
| 54 | + <input type="checkbox" name="hidcon" onchange="changeCompletion()"> |
| 55 | + Hide the console when running your exe ? |
| 56 | + </label> |
61 | 57 | </div>
|
62 |
| - |
63 |
| - <div class="form-group is-ico"> |
64 |
| - <label class="col-xs-3 control-label text-right">Icon</label> |
65 |
| - <div class="col-xs-9"> |
66 |
| - <input type="file" name="icon" class="form-control input-sm" value=""> |
67 |
| - <span class="glyphicon glyphicon-remove form-control-feedback hide"></span> |
68 |
| - </div> |
| 58 | + <div class="checkbox"> |
| 59 | + <label class="text-muted"> |
| 60 | + <input type="checkbox" name="completion" disabled> |
| 61 | + Try to add feedback after completion ? |
| 62 | + </label> |
69 | 63 | </div>
|
| 64 | + </div> |
70 | 65 |
|
71 |
| - <div class="form-group"> |
72 |
| - <div class="col-xs-9 col-xs-offset-3 mt20"> |
73 |
| - <small class="text-muted">Tanananana... </small> |
74 |
| - <button type="submit" class="btn btn-sm btn-info" onclick="sendToBatch()">Batchman !</button> |
75 |
| - </div> |
| 66 | + <div class="form-group"> |
| 67 | + <div class="col-xs-11 col-xs-offset-1 mt10"> |
| 68 | + <small class="text-muted">Tanananana... </small> |
| 69 | + <button type="submit" class="btn btn-sm btn-info" onclick="sendToBatch()">Batchman !</button> |
76 | 70 | </div>
|
| 71 | + </div> |
77 | 72 |
|
78 | 73 | </form>
|
79 | 74 | </div>
|
|
0 commit comments