codice:
<!DOCTYPE html> 



<html>
<head>
<meta charset="utf-8">
<title>Login iphone</title>
 
<meta name="viewport" content="width=device-width, initial-scale=2.0, maximum-scale=2.0" />
<style>
 label{ width:100%}
 input{ width:100%}
</style>
</head> 
<body> 

 <%=session("nick")%>
 
     <form method="post" action="login.php" name="form" id="form" >
 
    <label for="username">User</label>
    <input type="text" name="nick" id="email" value=""  />
 
           
    <label for="password">Password</label>
    <input type="password" name="psw" id="password" value=""  />
 
  
     <input type="submit" value="Login">
    
  </form>


</body>
</html>