mirror of
https://onedev.site.tesses.net/crosslang/crosslangextras
synced 2026-02-09 01:25:46 +00:00
23 lines
621 B
Plaintext
23 lines
621 B
Plaintext
func Pages.CheckEmail(ctx)
|
|
{
|
|
var pages = [
|
|
{
|
|
active = false,
|
|
route = "/packages",
|
|
text = "Packages"
|
|
},
|
|
{
|
|
active = false,
|
|
route = "/upload",
|
|
text = "Upload"
|
|
},
|
|
DB.LoginButton(ctx,false)
|
|
];
|
|
var html = <div class={"container"}>
|
|
<h1>Please check your email.</h1>
|
|
<p>
|
|
The email may or may not be in your spam.
|
|
</p>
|
|
</div>;
|
|
return Shell("Check your email",pages,html);
|
|
} |