genial ksksksgo toBağlantıları görmek için lütfen Giriş Yapand tell ai like " can you create login html webpage for my shop ?' boom easy
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
<style>
/* Add some styling to the page */
body {
background-color: #f2f2f2;
}
h1 {
text-align: center;
}
form {
margin: auto;
width: 50%;
background-color: #fff;
padding: 20px;
border-radius: 5px;
}
input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
button {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<h1>Login Page</h1>
<form>
<label for="username"><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="username" required>
<label for="password"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="password" required>
<button type="submit">Login</button>
</form>
</body>
</html>