From d84651a899a6104fce73d95b9c571627c55e5d16 Mon Sep 17 00:00:00 2001 From: fusion32 Date: Fri, 1 Aug 2025 19:48:26 -0300 Subject: bare bones website --- templates/account_summary.tmpl | 65 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 templates/account_summary.tmpl (limited to 'templates/account_summary.tmpl') diff --git a/templates/account_summary.tmpl b/templates/account_summary.tmpl new file mode 100644 index 0000000..ae42479 --- /dev/null +++ b/templates/account_summary.tmpl @@ -0,0 +1,65 @@ +{{template "_header.tmpl" .Common}} + {{with .Account}} +
+

Account Information

+ + + + + + + + {{if eq .PremiumDays 1}} + + {{else if gt .PremiumDays 1}} + + {{else}} + + {{end}} + + {{if .PendingPremiumDays}} + + + {{if eq .PendingPremiumDays 1}} + + {{else}} + + {{end}} + + {{end}} +
Email:{{.Email}}
Status:Premium Account (last day)Premium Account ({{.PremiumDays}} days left)Free Account
Pending Premium:1 day{{.PendingPremiumDays}} days
+
+ {{if .Characters}} +
+

Characters

+ + + + + + + + + {{range .Characters}} + + + + + + {{if .Online}} + + {{else}} + + {{end}} + + {{end}} +
NameLevelVocationWorldStatus
{{.Name}}{{or .Level 1}}{{or .Profession "None"}}{{.World}}OnlineOffline
+
+ {{end}} + {{else}} +
+

Oops

+

Something went wrong when loading your account's summary. Wait a few moments and try again.

+
+ {{end}} +{{template "_footer.tmpl" .Common}} \ No newline at end of file -- cgit v1.2.3