lunes, 23 de diciembre de 2024

Subir Imagen o Video

Subir Imagen o Video

 <!DOCTYPE html>

<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Subir Imagen o Video</title>
</head>
<body>
    <h1>Subir Imagen o Video</h1>
    <form action="/upload" method="post" enctype="multipart/form-data">
        <label for="fileUpload">Selecciona una imagen o video:</label>
        <input type="file" id="fileUpload" name="fileUpload" accept="image/*,video/*">
        <button type="submit">Subir</button>
    </form>
</body>
</html>