alfheim-website/ui/account.html
Vicente Ferrari Smith 98e641c55c added
git-svn-id: svn://losandesgames.com/alfheim-website@14 15359d88-9307-4e75-a9c1-e5686e5897df
2024-05-20 22:50:06 +00:00

23 lines
551 B
HTML

{{define "body"}}
<div class="account-wrapper">
<div>Username: {{.Account.Username}}</div>
<div>First name: {{.Account.Firstname}}</div>
<div>Last name: {{.Account.Lastname}}</div>
<div>Color: {{.Account.Color}}</div>
</div>
<div class="wrapper">
<form action="/deleteaccount" method="post">
<div class="login-btn-wrapper">
<input type="submit" value="Delete Account" class="btn">
</div>
</form>
</div>
<div class="wrapper">
<form method="POST" action="/managebilling">
<button type="submit">Manage billing</button>
</form>
</div>
{{end}}