diff options
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', |