cpularp-manager-frontend/src/components/badrequest.html

25 lines
764 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title>Bad Request!</title>
<meta charset="UTF-8">
<meta name="description" content="Bad request trying to authenticate Discord oauth">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/public/css/style.css" />
</head>
<body>
<div class="bg-gray-200">
<div class="min-h-screen">
<div class="container max-w-3xl pt-4 pb-4 space-y-4">
<h1 class="text-left">Oops!</h1>
<p class="text-lg">There was some problem with the authentication process...</p>
<p>{{ .message }}</p>
</div>
</div>
</div>
</body>
</html>