-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
86 lines (79 loc) · 2.74 KB
/
test.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lista de Aplicaciones VPN</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<style>
body {
background-color: black;
color: white;
}
.jumbotron {
background-color: red;
color: white;
}
</style>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1 class="display-4">Lista de Aplicaciones VPN</h1>
<p class="lead">Aquí encontrarás una lista de aplicaciones VPN disponibles para descargar.</p>
</div>
<div class="row">
<div class="col-md-6">
<h2>Aplicaciones VPN Disponibles</h2>
<ul class="list-group">
<li class="list-group-item">Aplicación VPN 1</li>
<li class="list-group-item">Aplicación VPN 2</li>
<li class="list-group-item">Aplicación VPN 3</li>
</ul>
</div>
<div class="col-md-6">
<h2>Subir Aplicación VPN</h2>
<form id="uploadForm" enctype="multipart/form-data">
<div class="mb-3">
<label for="apkFile" class="form-label">Selecciona el archivo APK:</label>
<input type="file" class="form-control" id="apkFile">
</div>
<button type="submit" class="btn btn-primary">Subir</button>
</form>
</div>
</div>
<div class="row mt-4">
<div class="col-md-12">
<h2>Descargar Aplicación VPN</h2>
<p>Haz clic en el enlace para descargar la aplicación VPN:</p>
<a href="#" class="btn btn-danger">Descargar Aplicación VPN</a>
</div>
<form id="uploadForm" enctype="multipart/form-data">
<input type="file" name="file" id="fileInput">
<button type="submit">Subir archivo</button>
</form>
</div>
</div>
<script>
document.getElementById('uploadForm').addEventListener('submit', function(e) {
e.preventDefault(); // Evita que el formulario se envíe de forma predeterminada
var fileInput = document.getElementById('fileInput');
var file = fileInput.files[0]; // Obtiene el archivo seleccionado
var formData = new FormData();
formData.append('file', file); // Agrega el archivo al objeto FormData
// Realiza una solicitud AJAX para enviar el archivo al servidor
var xhr = new XMLHttpRequest();
xhr.open('POST', '/file', true);
xhr.onload = function() {
if (xhr.status === 200) {
alert('Archivo subido exitosamente');
} else {
alert('Error al subir el archivo');
}
};
xhr.send(formData);
});
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>