Problem mit Perl und HTML

345speedy

Herzlich willkommen!
Guten Tag, ich habe folgendes Probelm, und zwar habe ich mir eine HTML Seite erstellt und möchte nun gern ein Login vom Chat (das aus Perl besteht in die HTML seite einbauen, allerdings weiß ich nicht, wie ich das machen soll.. ich hab einfach mal versucht, den code aus der login html in die startseite.html einzubinden jedoch zeigt er mir dann die ganzen Perl befehle nicht an bzw nicht richtig

hier mal der Scrip aus der login html und aus der startseite

Login


Code:
<html>
<head>
	{PROXYCHECK}
	<base href="{GET|$settings.urls.htmlurl}">
	<link rel="stylesheet" href="{GET|$runtime.style}.css">
	<title>{GET|$settings.chatname}</title>
	<script language="JavaScript" src="chat.js" type="text/javascript">
	</script>
	<script language="JavaScript">
		cgi='{GET_JS|$runtime.completeurl}';
	</script>
</head>
<body marginwidth=36 leftmargin=36>

<div class="headertext">
	<table border=0 width="100%" cellspacing=5>
		<tr>
			<td width="100%"> </td>
			{FOREACH|$language|$settings.languages}
				<td align="center">
					{IF|$language ne $runtime.language}<a href="{GET|$runtime.completeurl}&language={GET|$language}">{ELSE}<b>{ENDIF}
						{IMAGE|$language}<br>
						{GETLNG|$language|$lang_name}
					{IF|$language ne $runtime.language}</a>{ELSE}</b>{ENDIF}
				</td>
			{ENDFOR}
		</tr>
	</table>

	<noscript>
		<br><br>
		<font color="red">
			Für die Benutzung des Chats ist JavaScript erforderlich, das in Ihrem Browser deaktiviert ist.
			Wie Sie JavaScript aktivieren können, finden Sie in den <a href="faq.html" class="stdlink" target="_blank">Chat-FAQ</a>.
		</font>
	</noscript>
	{IF|$input.proxy}
		<br><br>
		<font color="red">
			Die Verbindungsüberprüfung hat festgestellt, daß Sie den Chat nur im sicheren Modus nutzen können.
			Klicken Sie <a href="{GET|$runtime.completeurl}&action=proxycheck" class="stdlink">hier</a>, um Ihre Verbindung nochmal zu testen.
		</font>
	{ENDIF}
	
	<br><br>
	
	Und hier vielleicht eine Begrüßungsnachricht, im Template login.html einstellen...<br>
	Wenn Ihr Probleme beim Betreten des Chats habt, lest bitte die <a href="faq.html" class="stdlink" target="_blank">FAQ</a>.
	<br>
	<br>
	{IF|$news.message}
		<b>Chat-News</b> ({GETDATE|$news.date}): {DOFILTER|links|formatting|smileys}{GET|$news.message}{ENDDO} {IF|$news.author}- <i>von {GET|$news.author}</i>{ENDIF}
		<br>
		{IF|$news.messagecount>1}
			<div class="smalltext">
				<a href="{GET|$runtime.completeurl}&template=allnews" onclick="openWindow('allnews',600,200);return false;" class="stdlink">Alle Chat-News anzeigen</a>
			</div>
		{ENDIF}
	{ENDIF}
</div>

{NEED|$environment}
{NEED|$roomlist&onlineusers}
<table border=0 width="100%" cellspacing=0 cellpadding=10>
<tr>
	<td width="70%" valign=top>

		<form method=POST action="{GET|$runtime.chaturl}" name=loginForm target="_top">
		{GET|$runtime.hiddenfields}
		<input type=hidden name=action value=login>

		<table border=0 width="100%" cellspacing=0 cellpadding=0 class="outer"><tr><td>
		<table border=0 width="100%" cellspacing=1 cellpadding=0>

		<tr>
			<th>User Login</th>
		</tr>
		<tr class="row2"><td><table cellspacing=5>
		<tr>
			<td colspan=2>Noch keinen Namen für den Chat reserviert? Ein neuer Chat-Account kann <a href="{GET|$runtime.completeurl}&template=register">hier</a> eingerichtet werden. Man kann sich auch als Gast einloggen - einfach kein Paßwort eingeben.</td>
		</tr>
		<tr>
			<td colspan=2> </td>
		</tr>
		<tr>
			<td><b>{IIF|$environment.is_username|Benutzername|Nickname}:<input type="hidden" name="is_username" value="{GET|$environment.is_username}"></b></td>
			<td width="100%">
				{IF|$environment.has_password}
					{GET|$environment.name}<input type=hidden name=name value="{GET|$environment.name}">
				{ELSE}
					<input type=text name=name size=20 style="width:100%" maxlength="{IF|$environment.is_username}{GET|$settings.check_profile_fields_length.name[0]}{ELSE}{GET|$settings.check_profile_fields_length.nick[0]}{ENDIF}" value="{GET|$environment.name}">
				{ENDIF}
			<td>
		</tr>
		{IF|!$environment.has_password}
			<tr>
				<td><b>Paßwort:</b></td>
				<td><input type=password name=password size=20 style="width:100%"></td>
			</tr>
		{ENDIF}
		<tr>
			<td><b>Raum:</b></td>
			<td>
				<select name=room style="width:100%">
					{FOREACH|$room|$roomlist}
						<option value="{GET|$room.name_lc}" {IIF|$room.name_lc eq $environment.room|selected}> {GET|$room.name}
					{ENDFOR}
				</select>
			</td>
		</tr>
		<tr>
			<td> </td>
			<td><input type=checkbox name=pull value="1" {IIF|$environment.pull|checked}> Sicherer Modus</td>
		</tr>
		<tr>
			<td> </td>
			<td>
				<input type=checkbox name=cookie value="1" {IIF|$environment.has_cookie|checked}> Eingaben für den nächsten Login speichern
				{IF|$environment.has_cookie}
					(<a href="{GET|$runtime.completeurl}&action=removecookie" class=smalltext>Gespeicherte Eingaben entfernen</a>)
				{ENDIF}
			</td>
		</tr>
		<tr>
			<td colspan=2 align=center><input type=submit value="Login"></td>
		</tr>
		{IF|!$environment.has_password}
			<tr>
				<td colspan=2 align=center class="smalltext">
					<a href="{GET|$runtime.completeurl}&template=reminder" onclick="openWindow('reminder',460,300);return false;">Paßwort vergessen? Hier klicken!</a>
				</td>
			</tr>
		{ENDIF}
		<tr><td colspan=2></td></tr>
		</table></td></tr>

		</table>
		</td></tr></table>

		</form>
	</td>
	<td width="30%" valign=top>

		<table border=0 width="100%" cellspacing=0 cellpadding=0 class="outer"><tr><td>
		<table border=0 width="100%" cellspacing=1 cellpadding=0>
		<tr>
			<th>{GET|$onlineusers_count} Benutzer online</th>
		</tr>
			<TR class="row2"><TD><TABLE width="100%" cellspacing=5>
			{FOREACH|$room|$roomlist&onlineusers}
				{IF|$room.onlineusers_count}
					{SET|$flag|1}
					<tr class="row1">
						<td><b>{GET|$room.name}</b></td>
					</tr>
					<tr class="row2"><td>
						{FOREACH|$user|$room.onlineusers}
							   {GET|$user.nick} {IF_HAS_GROUPTAG|$user.tempgroup}({GROUPTAG|$user.tempgroup}){ENDIF}{NOTLAST}<br>
						{ENDFOR}
					</td></tr>
				{ENDIF}
			{ENDFOR}
			{IF|!$flag}
				<tr class="row2">
					<td>{IIF|$onlineusers_count|Keine Benutzer in den öffentlichen Räumen...|Keine Benutzer online...}</td>
				</tr>
			{ENDIF}
		</table>
		</td></tr></table>

		</td></tr></table>

	</td>
</tr>
</table>

<div align=center class="headertext">
	{COPYRIGHT}
</div>

</body>
</html>


Startseite:

Code:
<html>
<head>
   <title>www.Free-chatten.com</title>
   <meta http-equiv="imagetoolbar" content="no">
   <link rel="stylesheet" type="text/css" href="http://../css/register.css">
   <link rel="stylesheet" type="text/css" href="http://.../css/style.css">
   <link rel="SHORTCUT ICON" href="http://.../favicon.ico">    <script type="text/javascript" src="js/heute.js"></script>
    <script type="text/javascript" src="js/scripts.js"></script>

</head>

<body style="margin: 0pt;">

<center>
<table cellpadding="0" cellspacing="0" width="800" border="0" >
	<tr height="150">
		<td style="background:url(http://55878.webhosting22.1blu.de/img/top.jpg);"></td>
	 </tr>
</table><table cellpadding="0" cellspacing="0" width="800" border="0">
	<tr height="180">
	   <td background="http://55878.webhosting22.1blu.de/img/left.gif" width="24"></td>

	   <td align="center" valign="bottom" style="background:url(http://55878.webhosting22.1blu.de/img/welcome.jpg); background-position:top; background-repeat:no-repeat;">
			<a href="http://55878.webhosting22.1blu.de"><img src="http://55878.webhosting22.1blu.de/img/uebersicht.gif" border="0"></a>
			<a href="http://55878.webhosting22.1blu.de/login.php?zs=1"><img src="http://55878.webhosting22.1blu.de/img/nachrichten.gif" border="0"></a>
			<a href="http:55878.webhosting22.1blu.de/login.php?zs=1"><img src="http://55878.webhosting22.1blu.de/img/profil.gif" border="0"></a>
			<a href="http://55878.webhosting22.1blu.de/login.php?zs=1"><img src="http://55878.webhosting22.1blu.de/img/album.gif" border="0"></a>
			<a href="55878.webhosting22.1blu.de/suche.php?zs=1"><img src="http://55878.webhosting22.1blu.de/img/suche.gif" border="0"></a>
			<a href="55878.webhosting22.1blu.de/bewerten.php"><img src="http://55878.webhosting22.1blu.de/img/voten.gif" border="0"></a>
			<a href="http://55878.webhosting22.1blu.de/charts.php"><img src="http://55878.webhosting22.1blu.de/img/charts.gif" border="0"></a>
			<a href="http://55878.webhosting22.1blu.de/login.php"><img src="http://55878.webhosting22.1blu.de/img/login.gif" border="0"></a>

	   </td>
	   <td background="http://55878.webhosting22.1blu.de/img/right.gif" width="24"></td>
	 </tr>
</table>

   <!-- Content -->
   <table cellpadding="0" cellspacing="0" width="800" border="0">
      <tr height="10">
         <td background="http://55878.webhosting22.1blu.de/img/left.gif" width="24"></td>
         <td background="55878.webhosting22.1blu.de/img/topline.gif"></td>

         <td background="http://55878.webhosting22.1blu.de/img/right.gif" width="24"></td>
      </tr>
      <tr>
         <td background="http://55878.webhosting22.1blu.de/img/left.gif" width="24"></td>
         <td>


         <table border="0" cellpadding="0" cellspacing="0" width="752">
            <tr>
               <td width="443" valign="top">

                  <table border="0" cellpadding="0" cellspacing="0" width="443">
                     <tr>
                                             <td width="290" valign="top">
                           								 <form name="RegisterForm" action="/index.php?pid=25001&sub=chatten_de" method="post" enctype="multipart/form-data">
								   <table border="0" cellpadding="1" cellspacing="0">

														   
									<tr height="10"><td colspan="2"></td></tr>
									<tr>
								<html>
<head>
	

                           </tr>
                           </table>

                        </td>
                                             <td background="http://55878.webhosting22.1blu.de/img/teiler.gif" width="10"></td>
                     </tr>
					<tr>
						<td colspan="3" background="http://55878.webhosting22.1blu.de/img/topline.gif"> </td>
					</tr>

<tr>
								<td colspan="3" align="center">
								
									
								</td>
							</tr>
                  </table>
               </td>
               <td width="7"></td>
               <td valign="top" width="310">
                  <div style="padding: 0px 0px; float: right;">

                     <a href="http://55878.webhosting22.1blu.de/imprint.php" onClick="FensterImp(href); return false" style="padding: 1px 2px; color:#000000;">Impressum</a>
                  </div>

                  <div id="info">
                     
                     

                   
                     <br>
                    </div>
               </td>
            </tr>
         </table>


         </td>
         <td background="http://55878.webhosting22.1blu.de/img/right.gif" width="24"></td>
      </tr>
      <tr height="10">
         <td background="http://55878.webhosting22.1blu.de/img/left.gif" width="24"></td>
         <td background="http://55878.webhosting22.1blu.de/img/topline.gif"></td>
         <td background="http://55878.webhosting22.1blu.de/img/right.gif" width="24"></td>
      </tr>

      <tr height="20" valign="bottom">
         <td background="http://55878.webhosting22.1blu.de/img/left.gif" width="24"></td>
         <td align="center">
            <a href="http://55878.webhosting22.1blu.de/login.php" style="color:#d10015;">Memberbereich / Login</a> | 
<a href="http://55878.webhosting22.1blu.de/imprint.php" onClick="FensterImp(href); return false" style="color:#d10015;">Support</a> | 
<a href="http://55878.webhosting22.1blu.de/imprint.php" onClick="FensterImp(href); return false" style="color:#d10015;">Kontakt</a> | 
<a href="http://55878.webhosting22.1blu.de/privacy.php" onClick="FensterOeffnen(href); return false" style="color:#d10015;">Datenschutzerklärung</a> | 

<a href="http://55878.webhosting22.1blu.de/disclaimer.php" onClick="FensterOeffnen(href); return false" style="color:#d10015;">Widerrufsrecht</a> | 
<a href="" onClick="location.href='mailto:support@isa-solutions.de?Subject=Interesse am Partnerprogramm von www.willst-du-mein-freund-sein.com'; return false" style="color:#d10015;">Partnerprogramm</a> | 
<a href="http://55878.webhosting22.1blu.de/terms.php" onClick="FensterOeffnen(href); return false" style="color:#d10015;">AGB</a>
         </td>
         <td background="http://55878.webhosting22.1blu.de/img/right.gif" width="24"></td>
      </tr>
      <tr>
         <td colspan="3"><img src="http://55878.webhosting22.1blu.de/img/bottom.gif" border="0"></td>

      </tr>
   </table>

</center>

</body>
</html>
 
Oben