2017-01-03 07:47:31 +00:00
|
|
|
{{template "header.html" . }}
|
|
|
|
{{template "account-menu.html" . }}
|
2017-03-18 07:23:02 +00:00
|
|
|
<div class="colstack_right">
|
|
|
|
<div class="colstack_item colstack_head">
|
|
|
|
<div class="rowitem rowhead"><a>Emails</a></div>
|
|
|
|
</div>
|
|
|
|
<div class="colstack_item">
|
|
|
|
{{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}}
|
2017-01-03 07:47:31 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "footer.html" . }}
|