Files
2020-02-16 19:40:21 -08:00

33 lines
1.1 KiB
HTML

<link rel="stylesheet" type="text/css" href="{{resource("css/stationNameChanger.css")}}" />
<div id="stationNameChanger">
<div id="whitelist-json" style="display: none;">JSON Goes Here</div>
<form method="get" action="" class="input-area">
<div>
<label for="station-name">New Station Name</label>
</div>
<div class="input-wrap">
<input type="text" id="station-name" maxlength="MAXLENGTH_HERE" />
<input type="hidden" id="admin-user" value="ADMIN_USER_HERE" />
<button type="button" class="randomise"><i class="icon-refresh"></i></button>
</div>
<button type="submit" class="button large" disabled="disabled">
<span class="top"></span>Submit<span class="bottom"></span>
</button>
<div class="error-message">&nbsp;</div>
<div class="tips">
The name must contain any word contained in the whitelist below.<br>
It also must be at most MAXLENGTH_HERE characters.<br>
It may contain any numerals.
</div>
</form>
<div class="whitelist well"></div>
</div>
<script type="text/javascript" src="{{resource("js/stationNameChanger.js")}}"></script>