-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (46 loc) · 1.12 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
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="es">
<head>
<!-- Metas -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title & Icons -->
<title>AnderCMD | GPT Local</title>
<link rel="shortcut icon" href="./Images/Icono-Blanco.ico" type="image/x-icon">
<!-- Modules -->
<script src="./JavaScript/MLCEngine.js" type="module"></script>
<!-- CSS -->
<link rel="stylesheet" href="./CSS/Styles.css">
</head>
<body>
<nav>
<img src="./Images/Icono-Negro.ico" alt="Icono AnderCMD">
<h1>GPT Llama 3</h1>
</nav>
<main>
<ul>
<li class="Loading">
<i></i>
<h4>Cargando...</h4>
<h5>Por favor espere</h5>
<h5>Esto puede tardar un poco</h5>
</li>
</ul>
</main>
<form>
<input placeholder="Escribe tu mensaje aquí...">
<button disabled>Enviar</button>
</form>
<small> </small>
<template id="MessageTemplate">
<li class="Message">
<span></span>
<p></p>
</li>
</template>
<footer>
<img src="./Images/Icono-Negro.ico" alt="Icono de AnderCMD">
<p>Desarrollado por <a href="https://github.com/AnderCMD" target="_blank">AnderCMD</a>
</footer>
</body>
</html>