39 lines
2 KiB
HTML
39 lines
2 KiB
HTML
<!-- Canopy - The next generation of stoner streaming software
|
|
Copyright (C) 2024-2025 Rainbownapkin and the TTN Community
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. -->
|
|
<!-- I could turn this into partials which get called by both this and userBan but that seems like a lot of work to avoid a quick copy/pase
|
|
even if I'm usually against that, sometimes you gotta break da rulez :P -->
|
|
<link rel="stylesheet" type="text/css" href="/css/popup/ban.css">
|
|
<h3 class="popup-title">Ban NULL</h3>
|
|
<div class="ban-popup-content">
|
|
<span>
|
|
<label for="ban-popup-perm">Perma-Ban:</label>
|
|
<input type="checkbox" name="ban-popup-perm" id="ban-popup-perm">
|
|
</span>
|
|
<span>
|
|
<label id="ban-popup-expiration-prefix" for="ban-popup-expiration">Ban Expires In: </label>
|
|
<input type="number" name="ban-popup-expiration" id="ban-popup-expiration" value="14">
|
|
<label fid="ban-popup-expiration-postfix" or="ban-popup-expiration"> Days</label>
|
|
</span>
|
|
<span>
|
|
<label id="ban-popup-alts-prefix" for="ban-popup-alts">Ban Alts: </label>
|
|
<input type="checkbox" name="ban-popup-alts" id="ban-popup-alts" checked>
|
|
</span>
|
|
<span id="ban-popup-button-span">
|
|
<button id="ban-popup-cancel-button">Cancel</button>
|
|
<span id="ban-popup-button-span-spacer"></span>
|
|
<button id="ban-popup-ban-button" class="danger-button">Ban</button>
|
|
</span>
|
|
</div> |