mirror of
https://github.com/goonstation/goonstation-2020.git
synced 2026-08-27 05:56:15 +01:00
33 lines
1.1 KiB
HTML
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"> </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>
|