| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <%@ include file="../common/header.jsp" %>
- <script type="text/javascript" language="javascript">
- <!--
- function doCreateCodex(){
- var x = window.confirm("<bean:message key="confirm.create" />");
- if (x) {
- document.forms.codex.action.value="create_ok";
- document.forms.codex.post.value = "true";
- document.forms.codex.submit();
- }
- }
- function doBack(){
- document.forms.codex.action.value="list";
- document.forms.codex.clear.value="true";
- document.forms.codex.submit();
- }
- -->
- </script>
- <!-- CONTENT -->
- <form name="codex" method="post" action="codex.do" enctype="multipart/form-data">
- <input type="hidden" name="action">
- <input type="hidden" name="clear">
- <input type="hidden" name="sequence">
- <input type="hidden" name="post">
- <input type="hidden" name="redirect" value="create">
- <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
- <tr>
- <td class="titleHeader" align="left"><bean:message key="project.codex.key"/> - CREATE</td>
- </tr>
- </table>
- <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
- <tr>
- <td align="center">
- <table width="100%" border="0" cellspacing="1" cellpadding="2">
- <logic:messagesPresent property="error.codex">
- <tr>
- <td colspan="7">
- <font color="#FF0000"><html:errors property="error.codex"/></font>
- </td>
- </tr>
- </logic:messagesPresent>
- <tr>
- <td width="15%"><b><bean:message key="codex.id.key"/> <font color="#FF0000">*</font></b></td>
- <td width="10">:</td>
- <td width="30%">
- <html:text name="codex" property="id" size="30" maxlength="32" />
- </td>
- <td width="5%"> </td>
- <td width="15%"> </td>
- <td width="10"> </td>
- <td width="30%"> </td>
- </tr>
- <tr>
- <td width="15%"><b><bean:message key="codex.partial.key"/> <font color="#FF0000">*</font></b></td>
- <td width="10">:</td>
- <td width="30%">
- <input type="radio" name="radios" value="true" CHECKED>
- True
- <input type="radio" name="radios" value="false">
- False
- </td>
- <td width="5%"> </td>
- <td width="15%"> </td>
- <td width="10"> </td>
- <td width="30%"> </td>
- </tr>
- <tr>
- <td width="15%"><b><bean:message key="codex.xml.key"/> <font color="#FF0000">*</font></b></td>
- <td width="10">:</td>
- <td width="30%">
- <input type="file" name="uploadFile" value="<logic:notEmpty name="uploadFile_xml"><bean:write name="uploadFile_xml" /></logic:notEmpty>">
- </td>
- <td width="5%"> </td>
- <td width="15%"> </td>
- <td width="10"> </td>
- <td width="30%"> </td>
- </tr>
- <tr>
- <td width="15%"></td>
- <td width="10"></td>
- <td width="30%"><input type="button" value="<bean:message key="button.back"/>" onclick="javascript:doBack();">
- <input type="button" value="Submit" onclick="javascript:doCreateCodex();"></td>
- <td colspan="4"> </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </form>
- <!-- END CONTENT -->
- <%@ include file="../common/footer.jsp"%>
|