From 56e74239d6b34df8f30ef046f0b0ff4ff0866a71 Mon Sep 17 00:00:00 2001 From: =Corey Hulen Date: Sun, 14 Jun 2015 23:53:32 -0800 Subject: first commit --- api/templates/email_change_body.html | 54 +++++++++++++++++++++++++ api/templates/email_change_subject.html | 1 + api/templates/error.html | 26 ++++++++++++ api/templates/find_teams_body.html | 64 ++++++++++++++++++++++++++++++ api/templates/find_teams_subject.html | 1 + api/templates/invite_body.html | 56 ++++++++++++++++++++++++++ api/templates/invite_subject.html | 1 + api/templates/password_change_body.html | 55 +++++++++++++++++++++++++ api/templates/password_change_subject.html | 1 + api/templates/post_body.html | 57 ++++++++++++++++++++++++++ api/templates/post_subject.html | 1 + api/templates/reset_body.html | 58 +++++++++++++++++++++++++++ api/templates/reset_subject.html | 1 + api/templates/signup_team_body.html | 59 +++++++++++++++++++++++++++ api/templates/signup_team_subject.html | 1 + api/templates/verify_body.html | 56 ++++++++++++++++++++++++++ api/templates/verify_subject.html | 1 + api/templates/welcome_body.html | 54 +++++++++++++++++++++++++ api/templates/welcome_subject.html | 1 + 19 files changed, 548 insertions(+) create mode 100644 api/templates/email_change_body.html create mode 100644 api/templates/email_change_subject.html create mode 100644 api/templates/error.html create mode 100644 api/templates/find_teams_body.html create mode 100644 api/templates/find_teams_subject.html create mode 100644 api/templates/invite_body.html create mode 100644 api/templates/invite_subject.html create mode 100644 api/templates/password_change_body.html create mode 100644 api/templates/password_change_subject.html create mode 100644 api/templates/post_body.html create mode 100644 api/templates/post_subject.html create mode 100644 api/templates/reset_body.html create mode 100644 api/templates/reset_subject.html create mode 100644 api/templates/signup_team_body.html create mode 100644 api/templates/signup_team_subject.html create mode 100644 api/templates/verify_body.html create mode 100644 api/templates/verify_subject.html create mode 100644 api/templates/welcome_body.html create mode 100644 api/templates/welcome_subject.html (limited to 'api/templates') diff --git a/api/templates/email_change_body.html b/api/templates/email_change_body.html new file mode 100644 index 000000000..dffe589cd --- /dev/null +++ b/api/templates/email_change_body.html @@ -0,0 +1,54 @@ +{{define "email_change_body"}} + + + + + +
+ + + + +
+ + + + + + + + + + +
+ +
+ + + + + + + +
+

You updated your email

+

You updated your email for {{.Props.TeamName}} on {{ .TeamUrl }}
If this change wasn't initiated by you, please reply to this email and let us know.

+
+ Any questions at all, mail us any time: {{.FeedbackEmail}}.
+ Best wishes,
+ The {{.SiteName}} Team
+
+
+

+ +

+

+ (c) 2015 SpinPunch, Inc. 855 El Camino Real, 13A-168, Palo Alto, CA, 94301.
+ If you no longer wish to receive these emails, click on the following link: Unsubscribe +

+
+
+
+ +{{end}} + diff --git a/api/templates/email_change_subject.html b/api/templates/email_change_subject.html new file mode 100644 index 000000000..612dfcbe7 --- /dev/null +++ b/api/templates/email_change_subject.html @@ -0,0 +1 @@ +{{define "email_change_subject"}}You updated your email for {{.Props.TeamName}} on {{ .Props.Domain }}{{end}} diff --git a/api/templates/error.html b/api/templates/error.html new file mode 100644 index 000000000..ab4d91378 --- /dev/null +++ b/api/templates/error.html @@ -0,0 +1,26 @@ + + + + {{ .SiteName }} - Error + + + + + + + +
+
+
+

{{ .SiteName }} needs your help:

+

{{.Message}}

+
+
+ + + diff --git a/api/templates/find_teams_body.html b/api/templates/find_teams_body.html new file mode 100644 index 000000000..d8b582b8a --- /dev/null +++ b/api/templates/find_teams_body.html @@ -0,0 +1,64 @@ +{{define "find_teams_body"}} + + + + + +
+ + + + +
+ + + + + + + + + + +
+ +
+ + + + + + + +
+

Finding teams

+

{{ if .Props }} + The following teams were found:
+ {{range $index, $element := .Props}} + {{ $index }}
+ {{ end }} + {{ else }} + We could not find any teams for the given email. + {{ end }} +

+
+ Any questions at all, mail us any time: {{.FeedbackEmail}}.
+ Best wishes,
+ The {{.SiteName}} Team
+
+
+

+ +

+

+ (c) 2015 SpinPunch, Inc. 855 El Camino Real, 13A-168, Palo Alto, CA, 94301.
+ If you no longer wish to receive these emails, click on the following link: Unsubscribe +

+
+
+
+ +{{end}} + + + diff --git a/api/templates/find_teams_subject.html b/api/templates/find_teams_subject.html new file mode 100644 index 000000000..e5ba2d23f --- /dev/null +++ b/api/templates/find_teams_subject.html @@ -0,0 +1 @@ +{{define "find_teams_subject"}}Your {{ .SiteName }} Teams{{end}} diff --git a/api/templates/invite_body.html b/api/templates/invite_body.html new file mode 100644 index 000000000..06f48759c --- /dev/null +++ b/api/templates/invite_body.html @@ -0,0 +1,56 @@ +{{define "invite_body"}} + + + + + +
+ + + + +
+ + + + + + + + + + +
+ +
+ + + + + + + +
+

You've been invited

+

{{.Props.TeamName}} started using {{.SiteName}}.
The team administrator {{.Props.SenderName}}, has invited you to join {{.Props.TeamName}}.

+

+ Join Team +

+
+ Any questions at all, mail us any time: {{.FeedbackEmail}}.
+ Best wishes,
+ The {{.SiteName}} Team
+
+
+

+ +

+

+ (c) 2015 SpinPunch, Inc. 855 El Camino Real, 13A-168, Palo Alto, CA, 94301.
+ If you no longer wish to receive these emails, click on the following link: Unsubscribe +

+
+
+
+ +{{end}} diff --git a/api/templates/invite_subject.html b/api/templates/invite_subject.html new file mode 100644 index 000000000..4be15e343 --- /dev/null +++ b/api/templates/invite_subject.html @@ -0,0 +1 @@ +{{define "invite_subject"}}{{ .Props.SenderName }} invited you to join {{ .Props.TeamName }} Team on {{.SiteName}}{{end}} diff --git a/api/templates/password_change_body.html b/api/templates/password_change_body.html new file mode 100644 index 000000000..f6499d46d --- /dev/null +++ b/api/templates/password_change_body.html @@ -0,0 +1,55 @@ +{{define "password_change_body"}} + + + + + +
+ + + + +
+ + + + + + + + + + +
+ +
+ + + + + + + +
+

You updated your password

+

You updated your password for {{.Props.TeamName}} on {{ .TeamUrl }} by {{.Props.Method}}.
If this change wasn't initiated by you, please reply to this email and let us know.

+
+ Any questions at all, mail us any time: {{.FeedbackEmail}}.
+ Best wishes,
+ The {{.SiteName}} Team
+
+
+

+ +

+

+ (c) 2015 SpinPunch, Inc. 855 El Camino Real, 13A-168, Palo Alto, CA, 94301.
+ If you no longer wish to receive these emails, click on the following link: Unsubscribe +

+
+
+
+ +{{end}} + + diff --git a/api/templates/password_change_subject.html b/api/templates/password_change_subject.html new file mode 100644 index 000000000..57422c692 --- /dev/null +++ b/api/templates/password_change_subject.html @@ -0,0 +1 @@ +{{define "password_change_subject"}}You updated your password for {{.Props.TeamName}} on {{ .SiteName }}{{end}} diff --git a/api/templates/post_body.html b/api/templates/post_body.html new file mode 100644 index 000000000..663ec66d2 --- /dev/null +++ b/api/templates/post_body.html @@ -0,0 +1,57 @@ +{{define "post_body"}} + + + + + +
+ + + + +
+ + + + + + + + + + +
+ +
+ + + + + + + +
+

You were mentioned

+

CHANNEL: {{.Props.ChannelName}}
{{.Props.SenderName}} - {{.Props.Hour}}:{{.Props.Minute}} GMT, {{.Props.Month}} {{.Props.Day}}

{{.Props.PostMessage}}

+

+ Go To Channel +

+
+ Any questions at all, mail us any time: {{.FeedbackEmail}}.
+ Best wishes,
+ The {{.SiteName}} Team
+
+
+

+ +

+

+ (c) 2015 SpinPunch, Inc. 855 El Camino Real, 13A-168, Palo Alto, CA, 94301.
+ If you no longer wish to receive these emails, click on the following link: Unsubscribe +

+
+
+
+ +{{end}} + diff --git a/api/templates/post_subject.html b/api/templates/post_subject.html new file mode 100644 index 000000000..32df31018 --- /dev/null +++ b/api/templates/post_subject.html @@ -0,0 +1 @@ +{{define "post_subject"}}[{{.Props.TeamName}} {{.SiteName}}] {{.Props.SubjectText}} for {{.Props.Month}} {{.Props.Day}}, {{.Props.Year}}{{end}} \ No newline at end of file diff --git a/api/templates/reset_body.html b/api/templates/reset_body.html new file mode 100644 index 000000000..3a5d62ab4 --- /dev/null +++ b/api/templates/reset_body.html @@ -0,0 +1,58 @@ +{{define "reset_body"}} + + + + + +
+ + + + +
+ + + + + + + + + + +
+ +
+ + + + + + + +
+

You requested a password reset

+

To change your password, click below.
If you did not mean to reset your password, please ignore this email and your password will remain the same.

+

+ Reset Password +

+
+ Any questions at all, mail us any time: {{.FeedbackEmail}}.
+ Best wishes,
+ The {{.SiteName}} Team
+
+
+

+ +

+

+ (c) 2015 SpinPunch, Inc. 855 El Camino Real, 13A-168, Palo Alto, CA, 94301.
+ If you no longer wish to receive these emails, click on the following link: Unsubscribe +

+
+
+
+ +{{end}} + + diff --git a/api/templates/reset_subject.html b/api/templates/reset_subject.html new file mode 100644 index 000000000..87ad7bc38 --- /dev/null +++ b/api/templates/reset_subject.html @@ -0,0 +1 @@ +{{define "reset_subject"}}Reset your password{{end}} diff --git a/api/templates/signup_team_body.html b/api/templates/signup_team_body.html new file mode 100644 index 000000000..6f8bbd92d --- /dev/null +++ b/api/templates/signup_team_body.html @@ -0,0 +1,59 @@ +{{define "signup_team_body"}} + + + + + +
+ + + + +
+ + + + + + + + + + +
+ +
+ + + + + + + +
+

Thanks for creating a team!

+

+ Set up your team +

+ {{ .SiteName }} is free for an unlimited time, for unlimited users.
You'll get more out of {{ .SiteName }} when your team is in constant communication--let's get them on board.

+

+ Learn more by taking a tour +

+
+ Any questions at all, mail us any time: {{.FeedbackEmail}}.
+ Best wishes,
+ The {{.SiteName}} Team
+
+
+

+ +

+

+ (c) 2015 SpinPunch, Inc. 855 El Camino Real, 13A-168, Palo Alto, CA, 94301.
+ If you no longer wish to receive these emails, click on the following link: Unsubscribe +

+
+
+
+ +{{end}} diff --git a/api/templates/signup_team_subject.html b/api/templates/signup_team_subject.html new file mode 100644 index 000000000..1cd3427d2 --- /dev/null +++ b/api/templates/signup_team_subject.html @@ -0,0 +1 @@ +{{define "signup_team_subject"}}Invitation to {{ .SiteName }}{{end}} \ No newline at end of file diff --git a/api/templates/verify_body.html b/api/templates/verify_body.html new file mode 100644 index 000000000..56d85572b --- /dev/null +++ b/api/templates/verify_body.html @@ -0,0 +1,56 @@ +{{define "verify_body"}} + + + + + +
+ + + + +
+ + + + + + + + + + +
+ +
+ + + + + + + +
+

You've been invited

+

Please verify your email address by clicking below.

+

+ Verify Email +

+
+ Any questions at all, mail us any time: {{.FeedbackEmail}}.
+ Best wishes,
+ The {{.SiteName}} Team
+
+
+

+ +

+

+ (c) 2015 SpinPunch, Inc. 855 El Camino Real, 13A-168, Palo Alto, CA, 94301.
+ If you no longer wish to receive these emails, click on the following link: Unsubscribe +

+
+
+
+ +{{end}} diff --git a/api/templates/verify_subject.html b/api/templates/verify_subject.html new file mode 100644 index 000000000..de0ef1d7a --- /dev/null +++ b/api/templates/verify_subject.html @@ -0,0 +1 @@ +{{define "verify_subject"}}[{{ .Props.TeamName }} {{ .SiteName }}] Email Verification{{end}} \ No newline at end of file diff --git a/api/templates/welcome_body.html b/api/templates/welcome_body.html new file mode 100644 index 000000000..fbc2e5551 --- /dev/null +++ b/api/templates/welcome_body.html @@ -0,0 +1,54 @@ +{{define "welcome_body"}} + + + + + +
+ + + + +
+ + + + + + + + + + +
+ +
+ + + + + + + +
+

You joined the {{.Props.TeamName}} team at {{.SiteName}}!

+

Please let me know if you have any questions.
Enjoy your stay at {{.SiteName}}.

+
+ Any questions at all, mail us any time: {{.FeedbackEmail}}.
+ Best wishes,
+ The {{.SiteName}} Team
+
+
+

+ +

+

+ (c) 2015 SpinPunch, Inc. 855 El Camino Real, 13A-168, Palo Alto, CA, 94301.
+ If you no longer wish to receive these emails, click on the following link: Unsubscribe +

+
+
+
+ +{{end}} + diff --git a/api/templates/welcome_subject.html b/api/templates/welcome_subject.html new file mode 100644 index 000000000..106cc3ae6 --- /dev/null +++ b/api/templates/welcome_subject.html @@ -0,0 +1 @@ +{{define "welcome_subject"}}Welcome to {{ .SiteName }}{{end}} \ No newline at end of file -- cgit v1.2.3-1-g7c22