Untitled
unknown
plain_text
2 years ago
1.4 kB
9
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Worth It</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 20px;
}
.container {
width: 50%;
margin: 0 auto;
padding-top: 50px;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<header>
<h1>Worth It</h1>
</header>
<div class="container">
<form>
<input type="text" placeholder="Username" required><br>
<input type="password" placeholder="Password" required><br>
<input type="submit" value="Login">
</form>
</div>
</body>
</html>
Editor is loading...
Leave a Comment