forked from osmlab/osm-deep-history
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (41 loc) · 911 Bytes
/
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
<table>
<tr>
<form action='node.php'>
<td align='right'>
<label for='node'>Node ID:</label>
</td>
<td>
<input type='text' size='10' id='node' name='id' />
</td>
<td>
<input type='submit' value='Get History' />
</td>
</form>
</tr>
<tr>
<form action='way.php'>
<td align='right'>
<label for='way'>Way ID:</label>
</td>
<td>
<input type='text' size='10' id='way' name='id' />
</td>
<td>
<input type='submit' value='Get History' />
</td>
</form>
</tr>
<tr>
<form action='relation.php'>
<td align='right'>
<label for='relation'>Relation ID:</label>
</td>
<td>
<input type='text' size='10' id='relation' name='id' />
</td>
<td>
<input type='submit' value='Get History' />
</td>
</form>
</tr>
</table>