Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Login</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- margin: 0;
- padding: 0;
- background-color: #f4f4f4;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- }
- form {
- background-color: #ffffff;
- padding: 30px;
- border-radius: 10px;
- box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
- width: 100%;
- max-width: 400px;
- }
- h1 {
- text-align: center;
- color: #333;
- margin-bottom: 20px;
- }
- input {
- width: 100%;
- padding: 12px;
- margin-bottom: 15px;
- border: 1px solid #ddd;
- border-radius: 5px;
- }
- button {
- width: 100%;
- padding: 12px;
- background-color: #4CAF50;
- color: white;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- font-size: 16px;
- }
- button:hover {
- background-color: #45a049;
- }
- p {
- text-align: center;
- font-size: 14px;
- }
- a {
- color: #4CAF50;
- text-decoration: none;
- }
- </style>
- </head>
- <body>
- <form action="#" method="post">
- <h1>Login</h1>
- <input type="email" name="email" placeholder="Email" required>
- <input type="password" name="password" placeholder="Password" required>
- <button type="submit">Login</button>
- <p>Don't have an account? <a href="registration.html">Register here</a></p>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement