1
0
Fork 0
mirror of https://gitlab.com/niansa/discordlistforbots.git synced 2025-03-06 20:49:22 +01:00
discordlistforbots/views/botdelete.csp
2021-06-10 13:58:43 +02:00

32 lines
1.1 KiB
Text

<%inc
/*
* discordlistforbots
* Copyright (C) 2021 niansa
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
%>
<%c++ auto botname = @@.get<std::string>("botname");%>
<%layout global_layout%>
<title>Deleting a bot - DFB</title>
<div class="container text-center">
<p class="title">Are you sure you want to delete {%botname%}?</p>
<form action="delete" method="post">
<input class="special-button" style="background-color:red;" type="submit" value="Yes">
<a class="special-button" href="../detail">No</a>
</form>
</div>