23 lines
812 B
HTML
23 lines
812 B
HTML
{{template "header.html" . }}
|
|
<main class="colstack account">
|
|
{{template "account-menu.html" . }}
|
|
<div class="colstack_right">
|
|
<div class="colstack_item colstack_head rowhead">
|
|
<div class="rowitem"><h1>Emails</h1></div>
|
|
</div>
|
|
<div class="colstack_item">
|
|
<!-- TODO: Do we need this inline CSS? -->
|
|
{{range .ItemList}}
|
|
<div class="rowitem" style="font-weight: normal;">
|
|
<a style="text-transform: none;">{{.Email}}</a>
|
|
<span style="float: right">
|
|
<span class="username">{{if .Primary}}Primary{{else}}Secondary{{end}}</span>
|
|
{{if .Validated}}<span class="username" style="color: green;">Verified</span>{{else}}<a class="username" style="color: crimson;">Resend Verification Email</a>{{end}}
|
|
</span>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</main>
|
|
{{template "footer.html" . }}
|