This repository has been archived on 2024-01-11. You can view files and clone it, but cannot push or open issues or pull requests.
admin/templates/hello.html

23 lines
671 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>{{.Server.Name}} Admin Panel</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='/resources/build/main.css'>
</head>
<body class="bg-slate-200 flex min-h-screen">
<div class="login">
<form>
<h3 class="font-bold mb-6 text-lg text-center">Log in to {{.Server.Name}} Admin</h3>
<a href="/login" class="button my-10 px-16">
Log In With Gitea
</a>
</form>
</div>
</body>
</html>