signup

mail@pastecode.io avatar
unknown
plain_text
16 days ago
3.4 kB
3
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ShopEase Signup</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f8f9fa;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }

        .signup-container {
            background: #fff;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 350px; /* Slightly smaller width */
            text-align: center;
        }

        .logo {
            margin-bottom: 1rem;
        }

        .logo img {
            width: 80px; /* Smaller logo */
            margin-bottom: 0.5rem;
        }

        h1 {
            margin: 0;
            font-size: 24px; /* Slightly smaller font size */
            color: #333;
        }

        form {
            display: flex;
            flex-direction: column;
            align-items: stretch; /* Stretch form elements to full width */
        }

        .input-group {
            margin-bottom: 0.75rem; /* Reduced margin */
        }

        .input-group label {
            margin-bottom: 0.25rem; /* Reduced margin */
            color: #555;
            font-size: 14px; /* Smaller font size */
        }

        .input-group input {
            width: 100%;
            padding: 0.5rem; /* Reduced padding */
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px; /* Smaller font size */
            box-sizing: border-box;
        }

        button {
            padding: 0.75rem;
            border: none;
            border-radius: 4px;
            background-color: #007bff;
            color: #fff;
            font-size: 14px; /* Smaller font size */
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 0.75rem; /* Reduced margin */
        }

        button:hover {
            background-color: #0056b3;
        }
    </style>
</head>
<body>
    <div class="signup-container">
        <div class="logo">
            <img src="shop-ease-logo.png" alt="ShopEase Logo">
            <h1>ShopEase</h1>
        </div>
        <form action="/signup" method="post">
            <div class="input-group">
                <label for="email">Email</label>
                <input type="email" id="email" name="email" required>
            </div>
            <div class="input-group">
                <label for="username">Username</label>
                <input type="text" id="username" name="username" required>
            </div>
            <div class="input-group">
                <label for="password">Password</label>
                <input type="password" id="password" name="password" required>
            </div>
            <div class="input-group">
                <label for="confirm-password">Confirm Password</label>
                <input type="password" id="confirm-password" name="confirm_password" required>
            </div>
            <button type="submit">Sign Up</button>
        </form>
    </div>
</body>
</html>
Leave a Comment