| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <#var list = new FArrayListS()/>
- @{list.add("11111")}
- @{list.add("222222")}
- <#function showList(list)>
- <table border="1">
- <#for item : list>
- ${showChild(item)}
- </#for>
- </table>
- </#function>
- <#function showChild(item)>
- <tr>
- <td>${item}</td>
- </tr>
- </#function>
- <!DOCTYPE html>
- <html>
- <head>
- <title>${name}</title>
- <meta charset="UTF-8">
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
- ${name}
- ${Styles.src("/service/res/fadfox_2016100801.css")}
- ${Scripts.src("/service/res/fadfox_2016100801.min.js")}
- ${Styles.htmlOverflowHidden()}
- <#function abc()>
- dass
- dddf
- </#function>
- <script>
- <!--
- function doRefreshVcode()
- {
- F("#vcode").attr("src", "/service/vcode.jpg?time=" + new Date().getTime());
- }
- function doRememberCode(rememberPass)
- {
- if (rememberPass.checked)
- {
- F("#check").checked = true;
- F("[data-id=check]").addClass("f-active");
- }
- }
- //-->
- </script>
- ${abc()}
- </head>
- ${abc()}333
- <body onload="theForm.operatorCode.focus()" style="background-color:#dce2f1;">
- ${showList()}
- <table class="f-table f-float-center fi-w500" style="margin-top:100px;">
- <tr>
- <td>
- <form name="theForm" method="post" action="${loginUrl}" onsubmit="return validateForm(this);">
- <input type="password" style="display:none">
- <table class=" f-table f-bordered f-px14 f-float-center f-pd6" style="background-color:#f1f3f5">
- <tr>
- <th colspan="2" height="40" class="f-bold f-text-white fi-px20" style="border:1px solid #4455aa;border-bottom:none;background-color:#4455aa">${name}</th>
- </tr>
- <tr>
- <td width="150" align="right">登录名:</td>
- <td width="*">
- <input name="operatorCode" type="text" class="f-input f-large ${styleColor}" value="${operatorCode}" maxlength="32"<#if !hasAutoComplete> autocomplete="off"</#if>>
- <input data-role="f-checkbox" data-class="f-blue" id="check" type="checkbox" name="rememberCode" <#if Validates.isNotEmpty(operatorCode)>checked</#if>> 记住用户名
- </td>
- </tr>
- <tr>
- <td align="right">密 码:</td>
- <td>
- <input name="operatorPass" type="password" class="f-input f-large ${styleColor}" value="${operatorPass}" maxlength="32"<#if !hasAutoComplete> autocomplete="off"</#if>>
- <input data-role="f-checkbox" data-class="f-blue" type="checkbox" name="rememberPass" onclick="doRememberCode(this);" <#if Validates.isNotEmpty(operatorPass)>checked</#if>/> 记住密码
- </td>
- </tr>
- <tr class="f-h50">
- <td colspan="2" align="center" bgcolor="#ffffff"><button type="submit" class="f-button f-blue f-w200 f-h40"><span class="f-px16">登录</span></button></td>
- </tr>
- </table>
- </form>
- </td>
- </tr>
- </table>
- </body>
- </html>
|