summaryrefslogtreecommitdiff
path: root/shrine/messages/auth.go
blob: 1c5c8394773a5d112fc2c831f81bd34f78db31d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package messages

const (
	InvalidRequestBody          = "Invalid request body."
	InvalidUsernameOrPassword   = "Invalid username or password."
	AccountBannedOrDisabled     = "Your account has been banned or disabled."
	IPBanned                    = "Access from this IP address has been restricted."
	EmailNotVerified            = "Your email address has not been verified. Please check your inbox."
	VerificationTokenRequired   = "Verification token is required."
	VerificationLinkInvalid     = "Your verification link is invalid or has expired."
	InvalidVerificationType     = "Invalid verification type."
	AccountAlreadyVerified      = "This account has already been verified."
	NoAccountWithEmail          = "No account exists with that email address."
	UsernameAlreadyExists       = "An account with that username already exists."
	EmailAlreadyExists          = "An account with that email address already exists."
	AccountCreated              = "Your account has been created. Please check your email to verify your account."
	EmailVerified               = "Your email has been verified successfully. You can now log in."
	VerificationEmailSent       = "A new verification email has been sent. Please check your inbox."
	LoggedOut                   = "You have been logged out successfully."
	FailedGenerateToken         = "Failed to generate verification token."
	FailedStoreToken            = "Failed to store verification token."
	FailedCreateSession         = "Failed to create session."
	FailedVerifyAccount         = "Failed to verify your account."
	FailedEndSession            = "Failed to end your session."
	EmailSubjectVerify          = "Verify your Pagoda account"
	EmailSubjectDisabled        = "Your Pagoda account has been disabled"
	EmailSubjectBanned          = "Your Pagoda account has been banned"
)