diff --git a/assets/templates/reset.html b/assets/templates/reset.html index 5157f09b..6f844fbd 100644 --- a/assets/templates/reset.html +++ b/assets/templates/reset.html @@ -4,57 +4,61 @@ Reset your password. - + - +
- - - - - - - - - - - -
- REVOLT logo -
- - - - - - - -
-

Reset your password!

-
-

- Reset your password by clicking here. -

-

- Or by manually navigating to the URL: {{url}} -

-
-
- - - - -
-

Sent by REVOLT. · Website · Source Code

-
-
- + + + + + + + + + + + +
+ Revolt logo +
+ + + + + + + +
+

Reset your password!

+
+

+ You requested a password reset, if you did not request this then you can safely ignore it. +

+

+ Reset your password by clicking here. +

+

+ Or by manually navigating to the URL: {{url}} +

+
+
+ + + + +
+

Sent by Revolt. · Website

+

Revolt is a user-first chat platform built with modern web technologies.

+
+
+
diff --git a/assets/templates/verify.html b/assets/templates/verify.html index c02ea6eb..28ed90e1 100644 --- a/assets/templates/verify.html +++ b/assets/templates/verify.html @@ -4,57 +4,61 @@ Verify your account. - + - +
- - - - - - - - - - - -
- REVOLT logo -
- - - - - - - -
-

Verify your account!

-
-

- Please verify your account by clicking here. -

-

- Or by manually navigating to the URL: {{url}} -

-
-
- - - - -
-

Sent by REVOLT. · Website · Source Code

-
-
- + + + + + + + + + + + +
+ Revolt logo +
+ + + + + + + +
+

Verify your account!

+
+

+ You're almost there! Verify your account to be able to log into the platform. +

+

+ Please verify your account by clicking here. +

+

+ Or by manually navigating to the URL: {{url}} +

+
+
+ + + + +
+

Sent by Revolt. · Website

+

Revolt is a user-first chat platform built with modern web technologies.

+
+
+
diff --git a/set_version.sh b/set_version.sh index 7c32c4e7..a8e1c492 100755 --- a/set_version.sh +++ b/set_version.sh @@ -1,3 +1,3 @@ #!/bin/bash -export version=0.5.1-alpha.11-patch.0 +export version=0.5.1-alpha.12 echo "pub const VERSION: &str = \"${version}\";" > src/version.rs diff --git a/src/main.rs b/src/main.rs index fdbe4dfa..8f25d475 100644 --- a/src/main.rs +++ b/src/main.rs @@ -86,13 +86,13 @@ async fn launch_web() { templates: Templates { verify_email: Template { - title: "Verify your REVOLT account.", - text: "Verify your email here: {{url}}", + title: "Verify your Revolt account.", + text: "You're almost there! Verify your account to be able to log into the platform.\nPlease verify your account here: {{url}}\n\nSent by Revolt. · Website: https://revolt.chat\nRevolt is a user-first chat platform built with modern web technologies.", html: include_str!("../assets/templates/verify.html"), }, reset_password: Template { - title: "Reset your REVOLT password.", - text: "Reset your password here: {{url}}", + title: "Reset your Revolt password.", + text: "You requested a password reset, if you did not request this then you can safely ignore it.\nReset your password here: {{url}}\n\nSent by Revolt. · Website: https://revolt.chat\nRevolt is a user-first chat platform built with modern web technologies.", html: include_str!("../assets/templates/reset.html"), }, welcome: None, diff --git a/src/version.rs b/src/version.rs index 1ee83eb3..5004496d 100644 --- a/src/version.rs +++ b/src/version.rs @@ -1 +1 @@ -pub const VERSION: &str = "0.5.1-alpha.11-patch.0"; +pub const VERSION: &str = "0.5.1-alpha.12";