HTML Code for Registration Form with Background Image

HTML Code for Registration Form with Background Image


registration form,HTML form,background image,user registration,form validation,form submission,input fields,button,web development,web design,


Below is a basic example of an HTML registration form with a background image. Note that this form is for demonstration purposes only and lacks server-side validation and security measures.


HTML

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Registration Form</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            margin: 0;

            padding: 0;

            background-image: url('background-image.jpg'); /* Replace 'background-image.jpg' with the actual image file */

            background-size: cover;

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

        }


        form {

            max-width: 400px;

            width: 100%;

            background-color: rgba(255, 255, 255, 0.8);

            padding: 20px;

            border-radius: 8px;

            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

        }


        label {

            display: block;

            margin-bottom: 8px;

        }


        input {

            width: 100%;

            padding: 8px;

            margin-bottom: 16px;

            box-sizing: border-box;

            border: 1px solid #ccc;

            border-radius: 4px;

        }


        button {

            background-color: #3498db;

            color: #fff;

            padding: 10px 15px;

            border: none;

            border-radius: 4px;

            cursor: pointer;

        }


        button:hover {

            background-color: #2980b9;

        }

    </style>

</head>

<body>

    <form action="#" method="post">

        <label for="username">Username:</label>

        <input type="text" id="username" name="username" required>


        <label for="email">Email:</label>

        <input type="email" id="email" name="email" required>


        <label for="password">Password:</label>

        <input type="password" id="password" name="password" required>


        <button type="submit">Register</button>

    </form>

</body>

</html>


Replace `'background-image.jpg'` in the `background-image` property with the actual path to your background image. Remember to replace the `action` attribute in the `<form>` tag with the appropriate URL for processing form submissions on your server. Additionally, implement server-side validation and security measures for a real-world application.

Post a Comment

Previous Post Next Post