File "interpretePdf.html"

Full Path: C:/wamp64/www/INTERPRETE2/frontend/node_modules/core-js/full/string/virtual/interpretePdf.html
File size: 1.39 KB
MIME-type: text/html
Charset: utf-8

<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <title>Generar PDF</title>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
    <link rel="stylesheet" href="interpretePdf.css">
</head>
<body>

    <div class="container">
        <h1>DIVIDIR ARCHIVO Y GENERAR PDF</h1>
        <input type="file" id="fileInput" accept=".txt" />
    <br></br>

    <label for="lineCount">Numero de lineas para dividir :</label>
    <input type="number" id="lineCount" placeholder="0000">

    <br>

    <label for="splitWord">Palabra para dividir :</label>
    <input type="word" id="splitWord" placeholder="word" value="AGROAVICOLA SAN MARINO S A ">

    <br></br>

    <button onclick="processFile()">Generar PDFs</button>
    <div id="messageBox" style="display:none; padding:10px;margin-top:20px;"></div>

    <div id="messageBox" style="display: none;"></div>
    </div>
<!-- jQuery (requerido por Select2 y el código) -->
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    
    <!-- Select2 CSS y JS (usado en selectCorreo) -->
    <link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" />
    <script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>

    <script src="interprete.js"></script>

</body>
</html>