1
0
Fork 0
mirror of https://gitlab.com/niansa/discordlistforbots.git synced 2025-03-06 20:49:22 +01:00
discordlistforbots/views/authsuccess.csp
2021-01-10 17:29:59 +01:00

21 lines
486 B
Text

<%inc#include "controllers/views.h" %>
<%c++ auto fullname = @@.get<std::string>("fullname");%>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/global.css">
<meta http-equiv = "refresh" content = "2; url = /" />
<title>Authentication success - DFB</title>
</head>
<body>
<div class="container">
<p class="title text-center">Authenticated as: {%fullname%}</p>
</div>
</body>
</html>