summaryrefslogtreecommitdiff
path: root/game/register.rpy
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-12-17 15:38:34 -0300
committerJesusaves <cpntb1@ymail.com>2020-12-17 15:38:34 -0300
commit55574bdf66cf0e93f3089e0702423dd74bb59715 (patch)
treea7476cdc9b97eb8da61748b89fcd4ec7acbd4e3a /game/register.rpy
parent0f8983e7e6920ee210772664d2330a0943332fb2 (diff)
downloadclient-55574bdf66cf0e93f3089e0702423dd74bb59715.tar.gz
client-55574bdf66cf0e93f3089e0702423dd74bb59715.tar.bz2
client-55574bdf66cf0e93f3089e0702423dd74bb59715.tar.xz
client-55574bdf66cf0e93f3089e0702423dd74bb59715.zip
Improve registration screen
Diffstat (limited to 'game/register.rpy')
-rw-r--r--game/register.rpy5
1 files changed, 4 insertions, 1 deletions
diff --git a/game/register.rpy b/game/register.rpy
index f5cd6f9..d7dd45d 100644
--- a/game/register.rpy
+++ b/game/register.rpy
@@ -78,7 +78,7 @@ label register_email:
email = ""
# Ask player for their email
while email == "":
- email=renpy.call_screen("input_box", "Welcome to %s!\nPlease insert your email to register an account: \n{size=24}Your account password will be emailed to you. This is the only way to recover a lost account. You can use an {a=https://www.tempmailaddress.com/}Temporary email{/a} if you wish.{/size}" % (config.name))
+ email=renpy.call_screen("input_box", "Please insert your {a=about_email}email{/a} to register an account: \n", "Welcome to %s!" % (config.name))
if not re.search(regex, email):
email=""
renpy.call_screen("msgbox",
@@ -119,4 +119,7 @@ label register_password:
password=""
jump login
+label about_email:
+ $ renpy.call_screen("msgbox", "Your account password will be emailed to you. This is the only way to recover a lost account. You can use an {a=https://www.tempmailaddress.com/}Temporary email{/a} if you wish.", False)
+ return