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.3 KiB
48 lines
1.3 KiB
|
|
<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="css/HISinOne.css" /> |
|
</head> |
|
<body> |
|
<div class="logo"><img src="images/qis/his_schriftzug.gif" alt="Hochschul-Informations-System-GmbH Startseite" title="Hochschul-Informations-System-GmbH Startseite"></div> |
|
|
|
<% |
|
if(request.getRemoteUser() != null) |
|
{ |
|
%> |
|
<jsp:forward page="../../servlet/SuperXmlAnmeldung" > |
|
<jsp:param name="kennung" value="<%= request.getRemoteUser() %>" /> |
|
</jsp:forward> |
|
<% |
|
} |
|
%> |
|
<% |
|
if(request.getParameter("token") != null) |
|
{ |
|
%> |
|
<!--wg. Tomcat 6.0.18 muss man statt " "nehmen :--> |
|
<jsp:forward page="../../servlet/SuperXmlAnmeldung" > |
|
<jsp:param name="token" value="<%= request.getParameter("token") %>" /> |
|
</jsp:forward> |
|
<% |
|
} |
|
%> |
|
<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>
|
|
|