1 <div class="container" id="details-index-page">
3 <div class="col-md-12">
5 <h1>Show details for place</h1>
7 <div class="search-form">
8 <h4>Search by place id</h4>
10 <form class="form-inline" action="details.html">
12 class="form-control input-sm"
15 placeholder="12345" />
17 class="btn btn-primary btn-sm"
22 <div class="search-form">
23 <h4>Search by OSM type and OSM id</h4>
25 <form id="form-by-type-and-id"
27 action="details.html">
29 class="form-control input-sm"
30 pattern="^[NWR][0-9]+$"
31 placeholder="N123 or W123 or R123" />
32 <input type="hidden" name="osmtype" />
33 <input type="hidden" name="osmid" />
34 <input type="submit" class="btn btn-primary btn-sm" value="Show" />
38 <div class="search-form">
39 <h4>Search by openstreetmap.org URL</h4>
41 <form id="form-by-osm-url"
43 action="details.html">
45 class="form-control input-sm"
46 pattern=".*openstreetmap.*"
47 placeholder="https://www.openstreetmap.org/relation/123" />
48 <input type="hidden" name="osmtype" />
49 <input type="hidden" name="osmid" />
50 <input type="submit" class="btn btn-primary btn-sm" value="Show" />