diff options
| author | ilotterytea <iltsu@alright.party> | 2025-12-09 01:51:38 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-12-09 01:51:38 +0500 |
| commit | 64a9bfae4a659f38f33320e59004a1d1dd259a40 (patch) | |
| tree | 037ada7511f50fa78dff1c6645b984b327f77ce2 /account/login | |
| parent | 29477e67ede12347b153e2255325327374e1b073 (diff) | |
upd: replaced <?php echo with <?=
Diffstat (limited to 'account/login')
| -rw-r--r-- | account/login/index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/account/login/index.php b/account/login/index.php index b4223f2..14f7c4e 100644 --- a/account/login/index.php +++ b/account/login/index.php @@ -44,7 +44,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { <html> <head> - <title>Login - <?php echo CONFIG['instance']['name'] ?></title> + <title>Login - <?= CONFIG['instance']['name'] ?></title> <link rel="stylesheet" href="/static/style.css"> <link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon"> </head> @@ -57,7 +57,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { <?php display_alert() ?> <section class="box"> <div class="box navtab"> - <p>Log in to <?php echo CONFIG['instance']['name'] ?></p> + <p>Log in to <?= CONFIG['instance']['name'] ?></p> </div> <div class="box content"> <form action="/account/login/" method="post"> @@ -87,7 +87,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { <section class="box column"> <a href="/account/login/twitch.php" class="button purple big">Login with Twitch</a> <p style="font-size: 12px;">Logging in via Twitch gives you the ability to use - <?php echo CONFIG['instance']['name'] ?> emotes in your Twitch chat. + <?= CONFIG['instance']['name'] ?> emotes in your Twitch chat. </p> </section> <?php endif; ?> |
