0% found this document useful (0 votes)
9 views

index html

gabut

Uploaded by

loina2306
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)
9 views

index html

gabut

Uploaded by

loina2306
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

<!

DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Login Hotspot</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
}
.login-container {
display: inline-block;
padding: 20px;
border: 1px solid #ddd;
border-radius: 10px;
background-color: #f9f9f9;
}
input[type="text"], input[type="password"] {
padding: 10px;
margin: 10px;
width: 200px;
border-radius: 5px;
border: 1px solid #ddd;
}
input[type="submit"] {
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="login-container">
<h2>Login Hotspot</h2>
<form method="POST" action="/login">
<input type="text" name="username" placeholder="Username" required><br>
<input type="password" name="password" placeholder="Password"
required><br>
<input type="submit" value="Login">
</form>
</div>
</body>
</html>

You might also like