forked from datosgobar/series-tiempo-ar-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (62 loc) · 2.92 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Series de Tiempo - Validador</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="./css/icono-arg.css"/>
<link rel="stylesheet" type="text/css" href="./css/poncho.min.css"/>
<link rel="stylesheet" type="text/css" href="./css/styles.css"/>
<script type="text/javascript" src="./js/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="./js/main.js"></script>
</head>
<body>
<header>
<nav class="navbar navbar-top navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#" aria-label="Argentina.gob.ar Presidencia de la Nación">
<img alt="Argentina.gob.ar" src="./img/argentinagob.svg" height="50">
</a>
</div>
</div>
</nav>
</header>
<div class="container">
<div class="index-header">
<h3 class="text-primary" id="validation-header">Validación de distribuciones de series de tiempo</h3>
</div>
<form action="" method="post">
<div class="row">
<div class="col-md-8 col-md-offset-2 form-group item-form">
<label for="catalog_url">URL del catálogo</label>
<input type="text" class="form-control" name="catalog_url" required aria-required="true">
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2 form-group item-form">
<label>Formato</label><br>
<select class="format form-control">
<option value="json">JSON</option>
<option value="xlsx">XLSX</option>
</select>
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2 form-group item-form">
<label for="distribution_id">Identificador de distribución</label>
<input type="text" class="form-control" name="distribution_id" required aria-required="true">
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<input value="Validar" type="button" class="btn btn-primary" onclick="makeRequest()">
</div>
</div>
</form>
<div class="col-md-8 col-md-offset-2 errors-container">
</div>
</div>
</body>
</html>