[go: up one dir, main page]

0% found this document useful (0 votes)
11 views1 page

All PHP

Uploaded by

chiragbrd07
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views1 page

All PHP

Uploaded by

chiragbrd07
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<?

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>

You might also like