-
Notifications
You must be signed in to change notification settings - Fork 0
/
tabeASY.html
81 lines (71 loc) · 3.19 KB
/
tabeASY.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
<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
</head>
<body>
<h2>TABELLINA ASY</h2>
<form>
<input action="action" onclick="window.history.go(-1); return false;" type="submit" value="Indietro"/>
<br/>
<label for="x1">Dimensione:</label>
<input type="text" id="x1" name="x1"><br>
</form>
<button onclick="get_info(this, 'x1', 'contenuto')" title="Tabellina">TABELLINA</button>
<div id="contenuto"></div>
<table border="1">
<tr>
<td>
<h2>POW ASY</h2>
<form>
<label for="x1a">Numero:</label>
<input type="text" id="x1a" name="x1a"><br>
<label for="x2a">Esponente:</label>
<input type="text" id="x2a" name="x2a"><br>
</form>
<button onclick="get_pow(this, 'x1a', 'x2a', 'contenutopow')" title="Potenza">POTENZA</button>
<div id="contenutopow"></div>
</td>
<td>
<h2>PLAY ASY</h2>
<form>
<label for="x1b">Numero:</label>
<input type="text" id="x1b" name="x1b"><br>
</form>
<button onclick="get_play(this, 'x1b', 'contenutoplay')" title="Potenza">PLAY</button>
<div id="contenutoplay"></div>
</td>
<td>
<h2 title="Questa richiesta viene gestita direttamente dal server">ARTIST (table) ASY</h2>
<form>
<label for="x1b">Numero max Id:</label>
<input type="text" id="x1c" name="x1c"><br>
</form>
<button onclick="get_artists(this, 'x1c', 'contenutoart')" title="Artisti">Chiedi</button>
<div id="contenutoart"></div>
</td>
<td>
<h2 title="Questa richiesta viene girata dal server ad un altro server. Quando questo risponde la risposta viene inoltrata qui">INDIRECT API AIR QUALITY (table) ASY</h2>
<form>
<label for="lon1" onclick="this.form.lon1.value=45.4642">Longitudine: (45.4642)</label>
<input type="text" id="lat1" name="lat1"><br>
<label for="lat1" onclick="this.form.lat1.value=9.19">Latitudine: (9.19)</label>
<input type="text" id="lon1" name="lon1"><br>
</form>
<button onclick="get_air_quality(this, 'lon1', 'lat1', 'contenutoAIR')" title="AIR QUALITY">Chiedi</button>
<div id="contenutoAIR"></div>
</td>
</tr>
<tr>
<td>
<h4 title="Questa richiesta viene girata dal server ad un altro server. Quando questo risponde la risposta viene inoltrata qui">INDIRECT API CAGNACCI VARI</h2>
<button onclick="get_cagnaccio_a_caso(this, 'contenutoCane', 'c_nome')" title="Cagnaccio mordace">Chiedi</button>
<cip id="c_nome"></cip> <miao></miao>
<div id="contenutoCane"></div>
</td>
</tr>
</table>
<script src="static/javascript/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
</body>
</html>