You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
48 lines
1.2 KiB
2 years ago
|
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
<title>SuperX-Anmeldung</title>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO 8859-1" />
|
||
|
<base target="_self"/>
|
||
|
<link rel="stylesheet" type="text/css" href="../style/superx.css"/>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<%
|
||
|
if(request.getRemoteUser() != null)
|
||
|
{
|
||
|
%>
|
||
|
<jsp:forward page="../servlet/SuperXmlAnmeldung" >
|
||
|
<jsp:param name="kennung" value="<%= request.getRemoteUser() %>" />
|
||
|
</jsp:forward>
|
||
|
<%
|
||
|
}
|
||
|
%>
|
||
|
<%
|
||
|
if(request.getParameter("token") != null)
|
||
|
{
|
||
|
%>
|
||
|
<jsp:forward page="../servlet/SuperXmlAnmeldung" >
|
||
|
<jsp:param name="token" value="<%= request.getParameter("token") %>" />
|
||
|
</jsp:forward>
|
||
|
<%
|
||
|
}
|
||
|
%>
|
||
|
<a href="http://www.superx-projekt.de" target="_parent" title="Homepage"><img src="../applet/images/Symbol.gif" alt="Logo von SuperX" border="0" /></a>
|
||
|
<h3>Anmeldung</h3>
|
||
|
|
||
|
<form action="/superx/servlet/SuperXmlAnmeldung" method="post">
|
||
|
<p><p>Kennung: <br /><input type="Text" name="kennung" value="" />
|
||
|
</p>
|
||
|
<p><p>Passwort: <br /><input type="Password" name="passwort" value="" />
|
||
|
<!--<INPUT TYPE="hidden" NAME="MandantenID" value="PHHD">-->
|
||
|
</p>
|
||
|
|
||
|
<input type="Submit" name="Abschicken" value="Anmelden" class="clsButtonStyle" />
|
||
|
|
||
|
|
||
|
</form>
|
||
|
<hr />
|
||
|
</body>
|
||
|
</html>
|