๐Ÿ“‚ File Browser

form
๐ŸŒ™ Dark Mode
๐ŸŽฏ Quick Launch:

๐Ÿ“ Directories

๐Ÿ“„ Files

๐Ÿ˜ index.php
โ–ถ Open ๐Ÿ“„ View Source
๐ŸŒ upload_simple.html
โ–ถ Open ๐Ÿ“„ View Source
๐Ÿ˜ view_simple.php
โ–ถ Open ๐Ÿ“„ View Source

๐Ÿ“„ Source: upload_simple.html

<!DOCTYPE html>
<html lang="ro">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Formular Date Personale</title>
    <link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;400;500;600;700;800&display=swap" rel="stylesheet">
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', system-ui, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 2rem 1rem;
        }
        .container { max-width: 600px; margin: 0 auto; }
        .card {
            background: white;
            border-radius: 2rem;
            padding: 2rem;
            box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
        }
        h1 {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea, #764ba2);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .subhead { color: #64748b; margin-bottom: 1.5rem; font-size: 0.9rem; }
        .input-group { margin-bottom: 1.2rem; }
        label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: #1e293b; }
        input {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 1rem;
            font-size: 1rem;
            transition: all 0.2s;
        }
        input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
        }
        button {
            width: 100%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 0.85rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 1rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        button:hover { transform: translateY(-2px); }
        footer { text-align: center; margin-top: 1.5rem; color: rgba(255,255,255,0.7); font-size: 0.75rem; }
    </style>
</head>
<body>
    <div class="container">
        <div class="card">
            <h1>๐Ÿ“ Formular Date Personale</h1>
            <p class="subhead">Completeazฤƒ toate cรขmpurile</p>

            <form action="view_simple.php" method="POST">
                <div class="input-group">
                    <label>๐Ÿ‘ค Nume</label>
                    <input type="text" name="nume" placeholder="Ex: Popescu" required>
                </div>

                <div class="input-group">
                    <label>๐Ÿ“› Prenume</label>
                    <input type="text" name="prenume" placeholder="Ex: Ion" required>
                </div>

                <div class="input-group">
                    <label>๐Ÿ“ง Email</label>
                    <input type="email" name="email" placeholder="exemplu@email.com" required>
                </div>

                <div class="input-group">
                    <label>๐Ÿ–ผ๏ธ URL Imagine</label>
                    <input type="url" name="imagine_url" placeholder="https://exemplu.ro/poza.jpg" required>
                </div>

                <button type="submit">โœจ Trimite datele</button>
            </form>
        </div>
        <footer>Datele tale sunt procesate รฎn siguranศ›ฤƒ</footer>
    </div>
</body>
</html>
โ† Back