-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
52 lines (47 loc) · 2.09 KB
/
index.php
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
48
49
50
51
52
<?php require_once 'functions.php'; ?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8" />
<title> CSV IMPORT! | Básico</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content=" " />
<meta name="author" content="" />
<meta name="keywords" content="" />
<meta name="robots" content="index, folow" />
<!--Icone-->
<link rel="icon" type="image/x-icon" href="img/logo.ico">
<!-- CSS Personaliado -->
<link rel="stylesheet" href="css/style.css">
<!-- CSS do Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!--Font Awesome === ICONES MANEIROS-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<!--Google Fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet"/>
</head>
<body class="body">
<div class="container">
<div class="row justify-content-center align-items-center body">
<div class="col-md-8 col-sm-12 col-lg-5">
<h2 class="text-center"> Upload Arquivo CSV</h2>
<?= getFlash('mensagem'); ?>
<form method="post" action="gImportar.php" enctype="multipart/form-data">
<div class="jumbotron">
<div class="chekbox">
<label><input type="file" name="file" /></label>
</div>
<button type="submit" class="btn btn-secondary" name="importar"> Importar </button>
</div>
</form>
</div>
</div>
</div>
<!--Bootstrap-->
<!-- Primeiro o jQuery, depois o Popper.js, e depois o Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!--/Bootstrap-->
</body>
</html>