20 lines
814 B
HTML
20 lines
814 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>{{ .identifier }}</title>
|
||
|
<meta charset="UTF-8"/>
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||
|
<link rel="icon" href="/static/svg/favicon.svg">
|
||
|
<link rel="stylesheet" type="text/css" href="/static/css/style.css"/>
|
||
|
</head>
|
||
|
<body>
|
||
|
<img src="/static/img/background.png" class="background" alt="">
|
||
|
<div class="inoutdiv">
|
||
|
<h2 class="w300">Welcome to {{ .identifier }}!</h2>
|
||
|
<p>{{ .identifier }} is an instance of Burgerauth, an open-source OAuth2 client.</p>
|
||
|
<p>This is running Burgerauth version 1.0.0</p>
|
||
|
<button onclick="window.location.href = '/dashboard'">Open Burgerauth</button>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|