34 lines
1.4 KiB
PHP
34 lines
1.4 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>📤 Subir Archivos</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
|
<style>
|
|
body { font-family: 'Segoe UI', sans-serif; background-color: #f4f6f9; }
|
|
.content { margin-top: 56px; padding: 40px 20px; background-color: #f4f6f9; }
|
|
@media (min-width: 768px) { .content { margin-left: 250px; } }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<?php include __DIR__ . '/../partials/sidebar_importador.php'; ?>
|
|
<div class="content">
|
|
<h4>📤 Subir Archivos al Expediente</h4>
|
|
<div class="card p-4 bg-white shadow-sm">
|
|
<form action="/IMPORTADORES/expediente/subir_handler" method="POST" enctype="multipart/form-data">
|
|
|
|
<input type="hidden" name="id_solicitud" value="<?= $id_solicitud ?>">
|
|
<div class="mb-3">
|
|
<label for="archivo" class="form-label">Selecciona archivo(s)</label>
|
|
<input class="form-control" type="file" name="archivos[]" id="archivo" multiple required>
|
|
</div>
|
|
<button type="submit" class="btn btn-success">Subir</button>
|
|
<a href="/IMPORTADORES/expediente/index" class="btn btn-secondary ms-2">Cancelar</a>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|