Skip to content

Instantly share code, notes, and snippets.

@Peterimie
Created July 22, 2022 13:20
Show Gist options
  • Save Peterimie/4bc55b02a0303a1321aaa9b8f01791b4 to your computer and use it in GitHub Desktop.
Save Peterimie/4bc55b02a0303a1321aaa9b8f01791b4 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>The Login Page</title>
<style>
form {
background-color: lightgray;
height:500px;
width: 100%;
font-family: Helvetica;
}
input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
outline: none;
}
</style>
</head>
<body style="margin: 0;">
<form>
<h2>My Login Page</h2>
<input type="text" placeholder="Enter Username">
<input type="password" placeholder="Enter Password">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment