forked from ClickAcademy/clickAcademy-f
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subirArchivo.html
90 lines (87 loc) · 2.93 KB
/
subirArchivo.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
87
88
89
90
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Registrarse</title>
<!--Hoja de estilo-->
<link rel="stylesheet" href="./styles/subirArchivo.css" />
<link href="./styles/global.css" rel="stylesheet" />
<!--scripts-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!--Sweetalert2-->
<script src="./sweetalert2/sweetalert2.all.min.js"></script>
<script
href="https://cdn.jsdelivr.net/npm/promise-polyfill@7/dist/polyfill.min.js"
></script>
<!---->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay"
crossorigin="anonymous"
/>
<!--Letras usadas-->
<link
href="https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="barraMenuSuperior"></div>
<div class="contenedorPrincipal">
<div class="Archivo">
<input
type="file"
value="upload"
id="botonCargarArchivo"
class="ArchivoSeleccionar"
/>
<label
for="botonCargarArchivo"
id="SeleccionarArchivo"
class="LabelCargar"
>
<i class="fas fa-cloud-upload-alt"> </i>
<h3>Selecciona archivos para subir</h3>
<progress value="0" max="100" id="barraProgreso">0%</progress>
</label>
</div>
<div class="Informacion">
<div class="Previsualizacion">
<div class="MiniaturaArchivo" id="preview">
<a id="DocPre"></a>
<video id="fitDiv" controls>
<source src="" id="ver" />
Tu buscador no soporta el video de HTML5
</video>
<iframe id="Pdf" src=""></iframe>
<img id="Img" src="" />
</div>
</div>
<div class="Datos">
<input type="text" placeholder="Nombre" id="nombre" />
<textarea placeholder="Abstract" id="descripcion"></textarea>
<textarea
name=""
id="tablaContenidos"
placeholder="Tabla de contenidos"
class="TextoInformacion"
></textarea>
<select id="categoria">
</select>
<button onclick="almacenarArchivo();">Subir archivo</button>
</div>
</div>
</div>
<div id="barraMenuInferior"></div>
<!--incluir Firebase-->
<script src="https://www.gstatic.com/firebasejs/5.10.1/firebase.js"></script>
<script src="./scripts/global.js"></script>
<!---->
<script src="./scripts/alertas.js"></script>
<script src="./scripts/menu.js"></script>
<script src="./scripts/subirArchivo.js"></script>
</body>
</html>