Created
March 12, 2013 05:43
-
-
Save ha10id/5140616 to your computer and use it in GitHub Desktop.
TestFSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta | |
http-equiv="Content-Type" | |
content="text/html; charset=utf-8" | |
/> | |
<style type="text/css"> | |
${ | |
CSS !".body { | |
font-family: sans-serif; | |
} | |
</style> | |
<!-- SCRIPTS INCLUDE --> | |
<script | |
type="text/javascript" | |
src="/portal/js/desktop.client.js" | |
></script> | |
</head> | |
<body> | |
<form | |
name="MainCustomForm" | |
action="${form.action}" | |
method="POST" | |
enctype="multipart/form-data" | |
> | |
<!-- FORM HEADER --> | |
<!--h3>Подготовка запроса</h3 --> | |
<!-- FORM DESCRIPTION --> | |
<!-- FORM FIELDS --> | |
<b> | |
<center> | |
<big>Ожидание ответа</big> | |
</center> | |
</b><br/> | |
<ul> | |
<li>Повторите отправку запроса.</li> | |
</ul> | |
<!-- FORM FIELDS --> | |
<table | |
border="0" | |
width="100%" | |
> | |
<fieldset> | |
<col | |
align="left" | |
width="15%" | |
> | |
<col | |
align="left" | |
width="85%" | |
> | |
<tr> | |
<td colspan="1">Код ошибки</td> | |
<td colspan="1"><input | |
type="text" | |
name="ErrorCode" | |
id="ErrorCode" | |
size="80" | |
readonly="true" | |
value="${ErrorCode}${errorCode}" | |
/></td> | |
</tr> | |
<br/> | |
<tr> | |
<td colspan="1">Описание ошибки</td> | |
<td colspan="1"><textarea | |
name="ErrorMessage" | |
id="ErrorMessage" | |
readonly="true" | |
cols="60" | |
rows="2" | |
>${ErrorMessage}${errorMessage}</textarea></td> | |
</tr> | |
</fieldset> | |
</table> | |
<!-- FORM BUTTONS --> | |
<#list outcome.values as transition><input | |
type="button" | |
name="outcome" | |
value="${transition}" | |
onclick="document.MainCustomForm.submit()" | |
></#list> | |
<br/> | |
</form> | |
<!-- JQUERY SCRIPTS INCLUDE --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment