1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <!DOCTYPE HTML>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <#include "../../layout/header.ftl"/>
- <#include "../../layout/common.cssjs.ftl"/>
- <#include "../appCommonHead.ftl"/>
- <#setting number_format="#">
- </head>
- <body>
- <form id="actionForm_app" method="post" type="label" autoclose="true" closeWindow="true"
- action="<@base/>/apps/tokenbased/update"
- forward="<@base/>/apps/list"
- enctype="multipart/form-data"
- class="needs-validation" novalidate>
- <!-- content -->
- <!--table-->
- <table width="960" class="table table-bordered" >
- <tbody>
- <tr>
- <td ><#include "../appUpdateCommon.ftl"/></td>
- </tr>
- <tr>
- <td>
- <table width="960" class="table table-bordered" >
- <tbody>
-
- <tr>
- <td colspan=4><@locale code="apps.tokenbased.info" /></td>
- </tr>
- <tr>
- <th style="width:15%;"><@locale code="apps.tokenbased.redirectUri" />:</th>
- <td colspan=3>
- <input type="text" id="redirectUri" class="form-control" name="redirectUri" title="" value="${model.redirectUri}" required="" />
- </td>
- </tr>
- <tr>
- <th ><@locale code="apps.tokenbased.tokenType" />:</th>
- <td >
- <select id="tokenType" name="tokenType" class="form-control">
- <option value="POST" <#if 'POST'==model.tokenType>selected</#if> >安全令牌(TOKEN POST)</option>
- <option value="LTPA" <#if 'LTPA'==model.tokenType>selected</#if> >轻量级认证(LTPA COOKIE)</option>
- </select>
- </td>
- <th ><@locale code="apps.tokenbased.cookieName" />:</th>
- <td >
- <input type="text" class="form-control" id="cookieName" name="cookieName" title="" value="${model.cookieName!}"/>
-
- </td>
- </tr>
- <tr>
- <th style="width:15%;"><@locale code="apps.tokenbased.algorithm" />:</th>
- <td style="width:35%;">
- <select id="algorithm" name="algorithm" class="form-control" >
- <option value="DES" <#if 'DES'==model.algorithm>selected</#if> >DES</option>
- <option value="DESede" <#if 'DESede'==model.algorithm>selected</#if>>DESede</option>
- <option value="Blowfish" <#if 'Blowfish'==model.algorithm>selected</#if>>Blowfish</option>
- <option value="AES" <#if 'AES'==model.algorithm>selected</#if>>AES</option>
- <option value="HS256" <#if 'HS256'==model.algorithm>selected</#if>>HMAC SHA-256</option>
- <option value="RS256" <#if 'RS256'==model.algorithm>selected</#if>>RSA SHA-256</option>
-
- </select>
- </td>
- <th style="width:15%;"><@locale code="apps.tokenbased.algorithmKey" />:</th>
- <td style="width:35%;">
- <span id="algorithmKey_text">${model.algorithmKey}</span>
- <input type="hidden" id="algorithmKey" name="algorithmKey" title="" value="${model.algorithmKey}"/>
- </td>
- </tr>
- <tr>
- <th><@locale code="apps.tokenbased.token.content" />:</th>
- <td >
- <#include "../userPropertys.ftl"/>
- </td>
- <th><@locale code="apps.tokenbased.expires" />:</th>
- <td>
- <input type="text" class="form-control" id="expires" name="expires" title="" value="${model.expires}" required="" />
- </td>
- </tr>
-
- <tr>
- <td colspan =4>
- <input class="button btn btn-primary mr-3" id="submitBtn" type="submit" value="<@locale code="button.text.save" />"/>
- <input class="button btn btn-secondary mr-3" id="backBtn" type="button" value="<@locale code="button.text.close" />"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- </form>
- </body>
- </html>
|