Thursday, October 5, 2017

HTML Form



<?php


?>

<head>
<title>html form</title>
<style type="text/css">
form{border:dotted; width:300px; height:auto; color: orange; text-align: center; margin-top:300px;}
</style>
</head>

<form action="index.html" method="POST">
<br />
UserName<br />
<input type="text" name="username"><br /><br />
Password<br />
<input type="password" name="password"><br /><br />
<input type="submit" value="Log In">
<br /><br />
</form>

No comments:

Post a Comment