DiscordEventLog/templates/hello.html
SeaswimmerTheFsh 7bd35f2713
Some checks failed
Pylint / Pylint (3.11) (push) Failing after 32s
initial commit
2023-11-24 17:49:55 -05:00

27 lines
576 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ name }}</title>
<style>
body {
background-color: #36393f;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
h1 {
color: #ffffff;
font-size: 36px;
text-align: center;
}
</style>
</head>
<body>
<h1>{{ name }}</h1>
</body>
</html>