страница входа в систему UI HTML CSS
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="./css/Style.css">
<meta charset="utf-8">
<link rel="icon" type="images/jpg" href="./imgs/img.jpg">
<style>
form{
padding:15px;
width:100%;
}
.login-box{
width:30%;
border:1px black solid;
margin-left:440px;
margin-top:100px;
}
input{
width:200px;
padding:10px;
}
h1{
padding:10px;
}
</style>
<title>Login|form</title>
</head>
<body>
<div class="login-box">
<h1>Login form </h1>
<hr>
<form action="info.php" target="blank" >
<p>USERNAME: </p>
<input type="text" placeholder= "Enter your Username">
<p>PASSWORD</p>
<input type="text" placeholder="Enter your password">
<br><br><br>
<input type="submit" name="" value="login">
<br><br>
<a href="#"> forgot your password</a>
<br>
<a href="#">Don't have an account</a>
</form>
</div>
</body>
</html>
Gracetoffy