-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
116 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{{/* | ||
SPANISH | ||
This template defines contents of the password reset email in spanish. | ||
See explanation in ./email-validation-en.templ | ||
*/}} | ||
|
||
|
||
{{define "subject" -}} | ||
Reestablecer contraseña de Tinode | ||
{{- end}} | ||
|
||
{{define "body_html" -}} | ||
<html> | ||
<body> | ||
|
||
<p>Hola.</p> | ||
|
||
<p>Recientemente solicitaste reestablecer la contraseña para tu cuenta <a href="{{.HostUrl}}">Tinode</a>. | ||
Usa el enlace de abajo para reestablecerla. El enlace es válido solamente por las siguientes 24 horas.</p> | ||
|
||
<blockquote><a href="{{.HostUrl}}#reset?scheme={{.Scheme}}&token={{.Token}}">Clic</a> para reestablecer contraseña.</blockquote> | ||
|
||
<p>Si tienes problemas con el enlace superior, copia y pega le siguiente URL en tu navegador.</p> | ||
<blockquote> | ||
<a href="{{.HostUrl}}#reset?scheme={{.Scheme}}&token={{.Token}}">{{.HostUrl}}#reset?scheme={{.Scheme}}&token={{.Token}}</a> | ||
</blockquote> | ||
|
||
{{with .Login}} | ||
<p>En caso de que lo hayas olvidado, tu usuario es: {{.}}.</p> | ||
{{end}} | ||
|
||
<p>Si no solicitaste el reestablecimiento de tu contrseña, por favor ignora este mensaje.</p> | ||
|
||
<p><a href="https://tinode.co/">Equipo de Tinode</a></p> | ||
|
||
</body> | ||
</html> | ||
{{- end}} | ||
|
||
{{define "body_plain" -}} | ||
|
||
Hola. | ||
|
||
Recientemente solicitaste reestablecer la contraseña para tu cuenta Tinode ({{.HostUrl}}). | ||
Usa el enlace de abajo para reestablecerla. El enlace es válido solamente por las siguientes 24 horas. | ||
|
||
{{.HostUrl}}#reset?scheme={{.Scheme}}&token={{.Token}} | ||
|
||
Si tienes problemas con el enlace superior, copia y pega le siguiente URL en tu navegador. | ||
|
||
{{- with .Login}} | ||
En caso de que lo hayas olvidado, tu usuario es: {{.}}. | ||
{{end -}} | ||
|
||
Si no solicitaste el reestablecimiento de tu contrseña, por favor ignora este mensaje. | ||
|
||
Equipo de Tinode | ||
https://tinode.co/ | ||
|
||
{{- end}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{{/* | ||
SPANISH | ||
See explanation in ./email-validation-en.templ | ||
*/}} | ||
|
||
{{define "subject" -}} | ||
Registro Tinode: Correo de confirmación | ||
{{- end}} | ||
|
||
{{define "body_html" -}} | ||
<html> | ||
<body> | ||
|
||
<p>Hola.</p> | ||
|
||
<p>Estás recibiendo este correo porque alguien uso tu correo para registrarse en | ||
<a href="{{.HostUrl}}">Tinode</a>.</p> | ||
|
||
<p><a href="{{.HostUrl}}#cred?method=email&code={{.Code}}&token={{.Token}}">Clic</a> para confirmar | ||
o ve a | ||
<a href="{{.HostUrl}}#cred?what=email">{{.HostUrl}}#cred?method=email</a> | ||
e ingresa el siguiente código:</p> | ||
<blockquote>{{.Code}}</blockquote> | ||
<p>Necesitas ingresar tu usuario y contraseña.</p> | ||
|
||
<p>Si tú no te registraste en Tinode solo ignora este mensaje.</p> | ||
|
||
<p><a href="https://tinode.co/">Equipo de Tinode</a></p> | ||
|
||
</body> | ||
</html> | ||
{{- end}} | ||
|
||
{{define "body_plain" -}} | ||
|
||
Hola. | ||
|
||
Estás recibiendo este correo porque alguien uso tu correo para registrarse en Tinode ({{.HostUrl}}). | ||
|
||
Da clic en el enlace {{.HostUrl}}#cred?method=email&code={{.Code}}&token={{.Token}} para confirmar o ve a {{.HostUrl}}#cred?what=email | ||
e ingresa el siguiente código: | ||
|
||
{{.Code}} | ||
|
||
Necesitas ingresar tu usuario y contraseña. | ||
|
||
Si tú no te registraste en Tinode solo ignora este mensaje. | ||
|
||
Equipo de Tinode | ||
https://tinode.co/ | ||
|
||
{{- end}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Código de confirmación de Tinode: {{.Code}} |