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/home.html

23 lines
671 B
HTML
Raw Normal View History

2022-01-26 17:00:13 +00:00
<!DOCTYPE html>
<html>
2022-01-27 20:21:09 +00:00
2022-01-26 17:00:13 +00:00
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
2022-01-27 20:21:09 +00:00
<title>{{.Server.Name}} Admin Panel</title>
2022-01-26 17:00:13 +00:00
<meta name='viewport' content='width=device-width, initial-scale=1'>
2022-01-27 20:24:20 +00:00
<link rel='stylesheet' type='text/css' media='screen' href='/resources/build/main.css'>
2022-01-26 17:00:13 +00:00
</head>
2022-01-27 20:21:09 +00:00
2022-01-27 21:00:02 +00:00
<body class="bg-slate-200 flex min-h-screen">
2022-01-27 21:06:18 +00:00
<div class="login">
2022-01-27 21:00:02 +00:00
<form>
2022-01-27 23:16:13 +00:00
<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>
2022-01-27 21:00:02 +00:00
</form>
</div>
2022-01-26 17:00:13 +00:00
</body>
2022-01-27 20:21:09 +00:00
2022-01-26 17:00:13 +00:00
</html>