diff options
author | Freya Murphy <freya@freyacat.org> | 2024-04-05 15:00:27 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-04-05 15:00:27 -0400 |
commit | 4c8d58b646ac62e67fc34c12f8cad51e7512bee3 (patch) | |
tree | 432351cce0acccd9a986872f7ea020dae14b0c71 /src/web/_views/apps/auth | |
parent | user menu (diff) | |
download | xssbook2-4c8d58b646ac62e67fc34c12f8cad51e7512bee3.tar.gz xssbook2-4c8d58b646ac62e67fc34c12f8cad51e7512bee3.tar.bz2 xssbook2-4c8d58b646ac62e67fc34c12f8cad51e7512bee3.zip |
add en_CAT makefile and use ucfirst/ucwords
Diffstat (limited to 'src/web/_views/apps/auth')
-rw-r--r-- | src/web/_views/apps/auth/login.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/web/_views/apps/auth/login.php b/src/web/_views/apps/auth/login.php index 2ba0896..c12af57 100644 --- a/src/web/_views/apps/auth/login.php +++ b/src/web/_views/apps/auth/login.php @@ -3,7 +3,7 @@ <div id="main-content"> <div class="branding col"> <h1>xssbook</h1> - <span><?=lang('login_branding')?></span> + <span><?=ucfirst(lang('login_branding'))?></span> </div> <div class="form card col"> <form id="action-login" class="col" action=""> @@ -13,9 +13,10 @@ name="username" id="login-username" placeholder=" " + autofocus="true" > <label for="username"> - <?=lang('ph_username')?> + <?=ucfirst(lang('ph_username'))?> </label> </div> <div class="rel mb"> @@ -26,7 +27,7 @@ placeholder=" " > <label for="password"> - <?=lang('ph_password')?> + <?=ucfirst(lang('ph_password'))?> </label> </div> <?=ilang('action_login', |