|
7 | 7 | <h1>${it.input.message}</h1>
|
8 | 8 | <j:if test="${!it.completed}">
|
9 | 9 | <j:new var="u" className="hudson.Util" />
|
10 |
| - <f:form method="post" action="${u.rawEncode(it.id)}/submit" name="${it.id}"> |
| 10 | + <f:form method="post" action="${u.rawEncode(it.id)}/submit" name="${it.id}" class="jenkins-form"> |
11 | 11 | <j:if test="${it.hasUnsafeParameters}">
|
12 |
| - <div class="alert alert-warning"> |
13 |
| - Support for <code>FileParameter</code>s will be removed in a future release. |
14 |
| - Details on how to migrate your pipeline can be found |
15 |
| - <a rel="noopener noreferrer" href="https://jenkins.io/redirect/plugin/pipeline-input-step/file-parameters">online</a>. |
| 12 | + <div class="jenkins-form-item--medium"> |
| 13 | + <div class="alert alert-warning"> |
| 14 | + Support for <code>FileParameter</code>s will be removed in a future release. |
| 15 | + Details on how to migrate your pipeline can be found |
| 16 | + <a rel="noopener noreferrer" href="https://jenkins.io/redirect/plugin/pipeline-input-step/file-parameters">online</a>. |
| 17 | + </div> |
16 | 18 | </div>
|
17 | 19 | </j:if>
|
18 | 20 | <j:if test="${it.hasUnsafeId}">
|
19 |
| - <div class="alert alert-warning"> |
20 |
| - The input is using a URL unsafe id ("<code>${it.id}</code>").<br/> |
21 |
| - Ids should be restricted to characters that are URL safe that do not need encoding such as ASCII alpha numeric and a limited set of punctuation. |
| 21 | + <div class="jenkins-form-item--medium"> |
| 22 | + <div class="alert alert-warning"> |
| 23 | + The input is using a URL unsafe id ("<code>${it.id}</code>").<br/> |
| 24 | + Ids should be restricted to characters that are URL safe that do not need encoding such as ASCII alpha numeric and a limited set of punctuation. |
| 25 | + </div> |
22 | 26 | </div>
|
23 | 27 | </j:if>
|
24 | 28 | <j:forEach var="param" items="${it.input.parameters}">
|
25 | 29 | <j:set var="escapeEntryTitleAndDescription" value="true"/>
|
26 |
| - <st:include page="index.jelly" it="${param}"/> |
| 30 | + <div class="jenkins-form-item--medium"> |
| 31 | + <st:include page="index.jelly" it="${param}"/> |
| 32 | + </div> |
27 | 33 | </j:forEach>
|
28 |
| - <f:block> |
| 34 | + <f:bottomButtonBar> |
29 | 35 | <f:submit value="${it.input.ok}" name="proceed"/>
|
30 |
| - <f:submit value="${it.input.cancel}" name="abort"/> |
31 |
| - </f:block> |
| 36 | + <f:submit value="${it.input.cancel}" name="abort" primary="false"/> |
| 37 | + </f:bottomButtonBar> |
32 | 38 | </f:form>
|
33 | 39 | </j:if>
|
34 | 40 | </j:jelly>
|
0 commit comments