Este sería el código para que te preguntara el nombre de usuario y la contraseña: Código PHP:
<html>
<head>
<style>
input{border:solid 1px black;
font:normal 10px/10px verdana;
background:#dfdfdf;
color:black;
width:100px;
}
td{
font:normal 10px/10px verdana;
color:black;
padding:5px 5px 5px 5px;
}
</style>
</head>
<body>
<center>
<form action="comprobar.php">
<table
style="border:solid 1px black;;">
<tr>
<td colspan="2">
Por, favor introduzca su nombre<br>
y contraseña:<br>
<br>
</td></tr>
<tr>
<td>
Nombre
</td>
<td>
<input
type="Text"
name="nombre"
value=""
onblur="this.style.background='#dfdfdf'"
onfocus="this.select();this.style.background='#ffffff'">
</td>
</tr>
<tr>
<td>
Contraseña
</td>
<td>
<input
type="password"
name="contraseña"
value=""
onblur=";this.style.background='#dfdfdf'"
onfocus="this.select();this.style.background='#ffffff'">
</td>
</tr>
<tr>
<td
colspan="2"
align="right">
<input
type="submit"
style="width:80px; background:#c0c0c0"
value="Entrar">
</td>
</tr>
</table>
</form>
</center>
</body>
</html>
Luego en la página de destino se comprueba el nombre y el usuario. Te mando a PHP para que te ayuden.
Un saludo!!