<?xml version="1.0" ?> 
<!-- <!DOCTYPE jump-container SYSTEM "Dialog.dtd"> -->
<jump-container type="dialog">

<Composite name="LogIn" title="Log On" description="Log on to $(SYSTEM_NAME) system">

<SingleTextInput name="UserName" expert="false">
  <HEADING>Logon with administrative AS Java user</HEADING>
  <LABEL>User Name</LABEL>
  <VARIABLE>USER</VARIABLE>
</SingleTextInput>

<PasswordInput name="PasswordInput" retype="false">
  <LABEL>Password</LABEL>
  <VARIABLE>PASS</VARIABLE>
</PasswordInput>

<choose>
<when test="$(RESUME_DEPLOY)">
	<InfoText name="ExtraInfo"><![CDATA[<html><p><em>
	JSPM could not connect to AS Java with provided user credentials. 
	Enter valid user name and password to resume the update.
	</em></html>]]></InfoText>
</when>
<otherwise>
	<InfoText name="ExtraInfo"><![CDATA[<html><p>
	Before starting the patch process, we recommend that you review the JSPM User Guide.
	You can find it on <a href="http://service.sap.com/jspm">service.sap.com/jspm</a> &gt; Media Library.
	</html>]]></InfoText>
	
	<InfoText name="warning"><![CDATA[<html><b>
	$(WARNING_MESSAGE)
	</b></html>]]></InfoText>
</otherwise>
</choose>

<if test="$(LOGON_FAILED)">
    <InfoText name="step"><![CDATA[<html>
    <b><em>Cannot log on.</em></b>
    </html>]]>
    </InfoText>
    <InfoText name="step">
    Error details:
    $(ERROR_MESSAGE)
    </InfoText>
</if>

<NavigationButtonGroup name="NavigationButtonGroup" default="Next"> 	
<choose>
<when test="$(RESUME_DEPLOY)">
	<BUTTON name="Next" enabled="true">#Resume</BUTTON>
</when>
<otherwise>
	<BUTTON name="Next" enabled="true">#Log On</BUTTON>
</otherwise>
</choose>	
	<BUTTON name="ExitTool" enabled="true">#Exit</BUTTON>
	<VARIABLE>NavigationButtonGroup</VARIABLE>
</NavigationButtonGroup>

</Composite>

</jump-container>
