23 lines
703 B
HTML
23 lines
703 B
HTML
|
{{define "content"}}
|
||
|
<html>
|
||
|
<body bakground="#ffffff" color="#000000" link="#0000FF" vlink="#990099" alink="#FF0000">
|
||
|
<basefont face="Arial,Helvetica,sans-serif" size="3" color="#000000"></basefont>
|
||
|
|
||
|
<h1>New Certification Photo Needs Approval</h1>
|
||
|
|
||
|
<p>
|
||
|
The user <strong>{{.Data.User.Username}}</strong> has uploaded a Certification Photo
|
||
|
and it needs admin approval. Click the link below to view pending Certification
|
||
|
Photos:
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
<a href="{{.Data.URL}}" target="_blank">{{.Data.URL}}</a>
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
This is an automated e-mail; do not reply to this message.
|
||
|
</p>
|
||
|
</body>
|
||
|
</html>
|
||
|
{{end}}
|