mirror of
https://gitlab.com/niansa/discordlistforbots.git
synced 2025-03-06 20:49:22 +01:00
21 lines
486 B
Text
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>
|