diff options
Diffstat (limited to 'src/application/views/form_register.php')
-rw-r--r-- | src/application/views/form_register.php | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/src/application/views/form_register.php b/src/application/views/form_register.php index 83f3f4e..a37e5c3 100644 --- a/src/application/views/form_register.php +++ b/src/application/views/form_register.php @@ -21,54 +21,57 @@ if (($_formError = RequestUtils::getAndClearFormError()) !== null) { ?> <form action="<?= htmlentities($_SERVER["REQUEST_URI"]) ?>" method="post"> <div class="form-group" id="group0"> - <label for="i_username">Username:</label> + <label for="i_username"><?= __("Username:") ?></label> <input class="form-control" id="i_username" type="text" name="username" value="" required> </div> <div class="form-group" id="group1"> - <label for="i_username">Username:</label> + <label for="i_username"><?= __("Username:") ?></label> <input class="form-control" id="i_username" type="text" name="df82a9bc21" value="<?= htmlentities($lastForm["username"] ?? "") ?>" required> </div> <div class="form-group" id="group2"> - <label for="i_display_name">Display name:</label> + <label for="i_display_name"><?= __("Display name:") ?></label> <input class="form-control" id="i_display_name" type="text" name="display_name" value="<?= htmlentities($lastForm["display_name"] ?? "") ?>" required> </div> <div class="form-group" id="group3"> - <label for="i_password">Choose password:</label> + <label for="i_password"><?= __("Choose password:") ?></label> <input class="form-control" id="i_password" type="password" name="password" required> </div> <div class="form-group" id="group4"> - <label for="i_password_retype">Repeat password:</label> + <label for="i_password_retype"><?= __("Repeat password:") ?></label> <input class="form-control" id="i_password_retype" type="password" name="password_retype" required> </div> <div class="form-group" id="group5"> - <label for="i_email">Email address:</label> + <label for="i_email"><?= __("Email address:") ?></label> <input class="form-control" id="i_email" type="email" name="email" value="<?= htmlentities($lastForm["email"] ?? "") ?>" required> </div> <div class="form-group" id="group6"> - <label for="i_email">CAPTCHA:</label> + <label for="i_email"><?= __("CAPTCHA:") ?></label> <div class="text-center margin-bottom"> <img src="?_action=captcha&t=<?= htmlentities(strval(microtime(true) * 1000)) ?>" alt="CAPTCHA" width="192" height="48" id="captcha-img"> </div> <div class="input-group"> <input type="text" name="captcha" id="i_captcha" class="form-control" required> <div class="input-group-btn"> - <button class="btn btn-default" type="button" id="btn-refresh-captcha"><span class="glyphicon glyphicon-refresh" aria-hidden="true"></span><span class="sr-only">New CAPTCHA</span></button> + <button class="btn btn-default" type="button" id="btn-refresh-captcha"><span class="glyphicon glyphicon-refresh" aria-hidden="true"></span><span class="sr-only"><?= __("New CAPTCHA") ?></span></button> </div> </div> </div> <div class="form-group"> - <button class="btn btn-default" type="submit">Register now</button> + <button class="btn btn-default" type="submit"><?= __("Register now") ?></button> </div> <div class="form-group"> - Already have an account? <a href="?_action=auth">Sign in now</a> + <?= __("Already have an account? %link%Sign in now%/link%", [ + "link" => '<a href="?_action=auth">', + "/link" => '</a>', + ]) ?> </div> </form> </div> |