Untitled

 avatar
unknown
plain_text
a year ago
564 B
3
Indexable
DOCTYPE html>
<html>
<head>
 <title>Login Form</title>
 <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
 <div class="login">
<h1> Student Login</h1>
 <form method="post" action="#">
<input type="text" name="Uname" placeholder="Enter Your Username" 
required>
 <input type="password" name="Pass" placeholder="Enter Your Password" required>
<input type="submit" name="log" id="log" value="LOGIN">
 <a href="#">Forgot Password</a>
 </form>
 </div>
</body>
</html>
style.css
body
{
 background-color:rgba(255,99,71,0.5);
Editor is loading...
Leave a Comment