-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
47 lines (38 loc) · 1.05 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/style.css" />
<title>Subir archivo CSV en PHP</title>
<!-- libreria jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- cargar js -->
<script src="js/cargar.js"></script>
</head>
<body>
<!-- contenedor -->
<main id="contenedor">
<!-- formulario -->
<section class="formulario">
<!-- -->
<header>
<h1>Formulario para subir archivo CSV</h1>
</header>
<!-- -->
<!-- -->
<section>
<form name="frmSubirCSV" id="frmSubirCSV" method="post" enctype="multipart/form-data">
<p><img src="images/file.png" alt="" class="imagen"></p>
<h2>Subir archivo CSV</h2>
<p><input type="file" name="archivo_csv" id="archivo_csv"></p>
<p><input type="submit" class="enviar_archivo separar_boton" value="Enviar archivo"></p>
<div id="estado"></div>
</form>
</section>
<!-- -->
</section>
<!-- ./formulario -->
</main>
<!-- ./contenedor -->
</body>
</html>