##// END OF EJS Templates
ux: change confirm password widget to have spacing between the...
dan -
r713:5a67f5a8 default
parent child Browse files
Show More
@@ -0,0 +1,28 b''
1 <div i18n:domain="deform" tal:omit-tag=""
2 tal:define="oid oid|field.oid;
3 name name|field.name;
4 css_class css_class|field.widget.css_class;
5 style style|field.widget.style">
6 ${field.start_mapping()}
7 <div class="form-group">
8 <input type="password"
9 name="${name}"
10 value="${field.widget.redisplay and cstruct or ''}"
11 tal:attributes="class string: form-control ${css_class or ''};
12 style style;"
13 id="${oid}"
14 i18n:attributes="placeholder"
15 placeholder="Password"/>
16 </div>
17 <div class="form-group">
18 <input type="password"
19 name="${name}-confirm"
20 value="${field.widget.redisplay and confirm or ''}"
21 tal:attributes="class string: form-control ${css_class or ''};
22 style style;"
23 id="${oid}-confirm"
24 i18n:attributes="placeholder"
25 placeholder="Confirm Password"/>
26 </div>
27 ${field.end_mapping()}
28 </div> No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now