website/web/templates/email/already_signed_up.html
Noah Petherbridge 1ee8acf060 Various quick fixes
* Signup: if entering an existing email, don't admit that the email
  exists. Instead, send a specialized email to its address.
* Search: no longer search for users by email address.
* Login: always hash the incoming password on user not found, to take
  constant time compared to when the user did exist.
* Fix a pagination bug when a private (shy account) views a non-friend's
  photo gallery.
2023-08-15 17:33:33 -07:00

36 lines
1.1 KiB
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>You already have a {{.Data.Title}} account</h1>
<p>
Somebody (hopefully you) has tried to sign up a new account by entering your e-mail address.
We already have an account for this e-mail address, but we didn't admit that to whoever
just signed up.
</p>
<p>
If it was not you, then you can disregard this e-mail.
</p>
<p>
If you have forgotten your password, you can request a password reset at the link below:
</p>
<p>
<a href="{{.Data.URL}}" target="_blank">{{.Data.URL}}</a>
</p>
<p>
You may sign in to the website using your e-mail address and account password.
</p>
<p>
This is an automated e-mail; do not reply to this message.
</p>
</body>
</html>
{{end}}