Disable various autocompletes
This commit is contained in:
parent
98faaaa7ba
commit
bc91a843f5
@ -47,15 +47,13 @@
|
|||||||
<label for="name">Location name:</label><br>
|
<label for="name">Location name:</label><br>
|
||||||
<input type="text" class="small-lookup-box" id="name" name="name" readonly><br>
|
<input type="text" class="small-lookup-box" id="name" name="name" readonly><br>
|
||||||
<label for="3alpha">CRS/3ALPHA:</label><br>
|
<label for="3alpha">CRS/3ALPHA:</label><br>
|
||||||
<input type="text" class="small-lookup-box" id="3alpha" name="3alpha" maxlength="3"><br>
|
<input type="text" class="small-lookup-box" id="3alpha" name="3alpha" maxlength="3" autocomplete="off"><br>
|
||||||
<label for="nlc">NLC:</label><br>
|
<label for="nlc">NLC:</label><br>
|
||||||
<input type="number" class="small-lookup-box" id="nlc" name="nlc" min="100000" max="999999"><br>
|
<input type="number" class="small-lookup-box" id="nlc" name="nlc" min="100000" max="999999" autocomplete="off"><br>
|
||||||
<label for="tiploc">TIPLOC:</label><br>
|
<label for="tiploc">TIPLOC:</label><br>
|
||||||
<input type="text" class="small-lookup-box" id="tiploc" name="tiploc" maxlength="7"><br>
|
<input type="text" class="small-lookup-box" id="tiploc" name="tiploc" maxlength="7" autocomplete="off"><br>
|
||||||
<label for="stanox">STANOX:</label><br>
|
<label for="stanox">STANOX:</label><br>
|
||||||
<input type="number" class="small-lookup-box" id="stanox" name="stanox"><br>
|
<input type="number" class="small-lookup-box" id="stanox" name="stanox" autocomplete="off"><br>
|
||||||
<label for="stanme" hidden>STANME:</label><br>
|
|
||||||
<input type="text" class="small-lookup-box" id="stanme" name="stanme" readonly hidden><br>
|
|
||||||
<input type="submit" value="Find" class="lookup-button" onclick="fetchEntry()">
|
<input type="submit" value="Find" class="lookup-button" onclick="fetchEntry()">
|
||||||
<input type="submit" value="Clear" class="lookup-button" onclick="clearForm()">
|
<input type="submit" value="Clear" class="lookup-button" onclick="clearForm()">
|
||||||
</body>
|
</body>
|
||||||
|
4
pis.html
4
pis.html
@ -50,11 +50,11 @@
|
|||||||
<div id="crs-inputs">
|
<div id="crs-inputs">
|
||||||
<div class="crs-input">
|
<div class="crs-input">
|
||||||
<label for="origin">From:</label><br>
|
<label for="origin">From:</label><br>
|
||||||
<input type="text" class="small-lookup-box pis-input" id="origin" name="origin" maxlength="3">
|
<input type="text" class="small-lookup-box pis-input" id="origin" name="origin" maxlength="3" autocomplete="off">
|
||||||
</div>
|
</div>
|
||||||
<div class="crs-input">
|
<div class="crs-input">
|
||||||
<label for="destination">To:</label><br>
|
<label for="destination">To:</label><br>
|
||||||
<input type="text" class="small-lookup-box pis-input" id="destination" name="destination" maxlength="3"><br><br>
|
<input type="text" class="small-lookup-box pis-input" id="destination" name="destination" maxlength="3" autocomplete="off"><br><br>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<button type="submit" value="Find" class="lookup-button">Submit</button>
|
<button type="submit" value="Find" class="lookup-button">Submit</button>
|
||||||
|
Reference in New Issue
Block a user