mirror of
https://github.com/1f349/tulip.git
synced 2024-11-09 22:42:53 +00:00
27 lines
544 B
HTML
27 lines
544 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>{{.Title}}</title>
|
||
|
<style>
|
||
|
#app > h1 {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
@media screen and (prefers-color-scheme: dark) {
|
||
|
:root {
|
||
|
color: #d2d2d2;
|
||
|
background-color: #1c1b22;
|
||
|
}
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="app">
|
||
|
<h1>{{.Title}}</h1>
|
||
|
<p>Hi {{.Name}},</p>
|
||
|
<p>Here is your email verification code: <span>{{.Code}}</span></p>
|
||
|
<p>{{.ServiceName}}</p>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|