MyBB.de Forum

Normale Version: Header login
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Hi ich würde gerne in einem script von mir ein User Login einbauen jedoch weiß ich nicht wie?
Anfang meiner php datei:
PHP-Code:
<?php
header
("Content-type: text/html; charset=iso-8859-1");
$ini parse_ini_file("ini.ini"true);
?>
<html>
<head>
<title><?php echo $ini["page"]["name"]; ?></title>
<link rel="stylesheet" type="text/css" href="href/style.css">
<script type="text/javascript" src="href/script.js"></script>
</head>
<body>
<div id="content">
 <div id="header">
  <p id="hline"><?php echo $ini["page"]["title"]; ?></p>
 </div> 

Die login Box die rein soll:
Code:
<title>Alleswerfer</title>
<meta name="author" content="wildweststyle">
</head>
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
Test Version
<form action="http://phoenix-jonglage.bplaced.net/forum/portal.php" method="post">
    <input type="hidden" name="action" value="do_login" />
    <span class="smalltext"><strong>Schnell-Login:</strong></span> </br>
    <input type="text" class="textbox" name="username" title="Benutzername" value="Benutzername" onfocus="this.value=''" /></br>
    <input type="password" class="textbox" name="password" title="Passwort" value="Passwort" onfocus="this.value=''" /></br>
    <input type="submit" class="button" value="Los" />
</form>

Kann mir evt. jemand sagen wie bzw wo ich die loginbox eintragen muss sodass sie im Header drinn ist?