<?
php
// your code goes here
<head>
<title>LOGIN FORM</title>
</head>
<style>
.body{ margin-left: 550px;
margin-top: 250px; }
.f1{ border: 2px solid black;
height: 300px;
width: 400px;
text-align: center;
background-image: linear- gradient(red,yellow); }
.i2{ margin-top: 50px; }
.b1{ margin-top: 50px;
width: 100px; }
.a1{ margin-top: 40px; }
</style>
<body class="body">
<form class="f1">
<h1>LOGIN FORM</h1> <label>USER NAME:</label>
<input type="text" name="un"><br> <label>PASSWORLD</label>
<input type="password" name="pw" class="i2"><br>
<button class="b1">sign up</button><br> <a href="forgot passworld"
class="a1">forgot password</a>
</form>
</body>
</html>