123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <!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="#">
- <script type="text/javascript">
- <!--
- $(function(){
-
- $("select[name='credential']").on("click",function(){
- if($(this).val()=="3"){
- $("#sharedconfigure").hide();
- $("#systemconfigure").hide();
- }else if($(this).val()=="1"){
- $("#sharedconfigure").hide();
- $("#systemconfigure").show();
- }else if($(this).val()=="2"){
- $("#sharedconfigure").show();
- $("#systemconfigure").hide();
- }
- });
- });
- //-->
- </script>
- </head>
- <body>
- <div class="container">
- <div class="row">
- <div class="col-md-12">
- <form id="actionForm_app" method="post" type="label" autoclose="true" closeWindow="true"
- action="<@base/>/apps/extendapi/update"
- forward="<@base/>/apps/list"
- enctype="multipart/form-data"
- class="needs-validation" novalidate>
- <!-- content -->
- <!--table-->
- <table class="table table-bordered" >
- <tbody>
- <tr>
- <td ><#include "../appUpdateCommon.ftl"/></td>
- </tr>
- <tr>
- <td>
- <table class="table table-bordered" >
- <tbody>
- <tr>
- <th ><@locale code="apps.principal"/></th>
- <td >
- <input type="text" class="form-control" id="principal" name="principal" title="" value="${model.principal}" required="" />
-
- </td>
- <th ><@locale code="apps.credentials"/></th>
- <td >
- <input type="text" class="form-control" id="credentials" name="credentials" title="" value="${model.credentials}" required="" />
-
- </td>
- </tr>
- <tr>
- <th style="width:15%;"><@locale code="apps.credential"/></th>
- <td style="width:35%;">
- <select id="credential" name="credential" class="form-control form-select" >
- <option value="3" <#if 3==model.credential >selected</#if> >
- <@locale code="apps.credential.user-defined"/>
- </option>
- <option value="2" <#if 2==model.credential >selected</#if> >
- <@locale code="apps.credential.shared"/>
- </option>
- <option value="1" <#if 1==model.credential >selected</#if> >
- <@locale code="apps.credential.system"/>
- </option>
- </select>
- </td>
- <th style="width:15%;"></th>
- <td style="width:35%;" >
- </td>
- </tr>
- <tr id="systemconfigure" <#if 1!=model.credential > style="display:none"</#if> >
- <th><@locale code="apps.systemUserAttr"/></th>
- <td colspan="3">
- <select id="systemUserAttr" name="systemUserAttr" class="form-control form-select" >
- <option value="uid" <#if 'uid'==model.systemUserAttr >selected</#if> >
- <@locale code="userinfo.id"/></option>
- <option value="employeeNumber" <#if 'employeeNumber'==model.systemUserAttr >selected</#if> >
- <@locale code="userinfo.employeeNumber"/></option>
- <option value="username" <#if 'username'==model.systemUserAttr >selected</#if> >
- <@locale code="userinfo.username"/></option>
- <option value="email" <#if 'email'==model.systemUserAttr >selected</#if> >
- <@locale code="userinfo.email"/></option>
- <option value="windowsaccount" <#if 'windowsaccount'==model.systemUserAttr >selected</#if> >
- <@locale code="userinfo.windowsAccount"/></option>
- </select>
- </td>
- </tr>
- <tr id="sharedconfigure" <#if 2!=model.credential > style="display:none"</#if>>
- <th><@locale code="apps.credential.sharedUsername"/></th>
- <td>
- <input type="text" class="form-control" id="sharedUsername" name="sharedUsername" value="${model.sharedUsername}" />
-
- </td>
- <th><@locale code="apps.credential.sharedPassword"/></th>
- <td>
- <input type="text" class="form-control" id="sharedPassword" name="sharedPassword" value="${model.sharedPassword}" />
- </td>
- </tr>
-
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- <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" />"/>
- </form>
- </div>
- </div>
- </div>
- </body>
- </html>
|