forked from cabutia/dwfs-concesionaria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (37 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Acamica DWFS - Concesionaria</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Helvetica+Neue&display=swap">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="container">
<h1>Panel de administracion</h1>
<!-- Formulario de carga de autos -->
<section class="section">
<h2>Carga de autos</h2>
<form id="form-carga">
<input type="text" name="marca" placeholder="Marca del auto">
<input type="text" name="precio" placeholder="Precio del auto">
<button type="submit" class="btn btn-primary">Agregar</button>
</form>
</section>
<!-- Listado de autos cargados -->
<section class="section">
<h2>Autos cargados</h2>
<div id="car-list">
</div>
</section>
<!-- Seccion de estadisticas -->
<section class="section">
<h2>Estadisticas</h2>
<table id="estadisticas">
</table>
</section>
</div>
<script src="./scripts.js"></script>
</body>
</html>