]> git.wh0rd.org Git - tt-rss.git/commitdiff
login form: display registration link as a button
authorAndrew Dolgov <fox@madoka.spb.ru>
Fri, 31 Oct 2008 07:01:16 +0000 (08:01 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Fri, 31 Oct 2008 07:01:16 +0000 (08:01 +0100)
login_form.php

index cf764bfe815a497c9ff4a5b0023d483a7c15c463..59982c2956e4425682f1ace23a2edc391646f088 100644 (file)
@@ -43,6 +43,11 @@ function languageChange(elem) {
        }
 }
 
+function gotoRegForm() {
+       window.location.href = "register.php";
+       return false;
+}
+
 function bwLimitChange(elem) {
        try {
                var limit_set = elem.checked;
@@ -123,11 +128,12 @@ window.onload = init;
 
                        <tr><td colspan="2" align="right" class="innerLoginCell">
 
+                       <input type="submit" class="button" value="<?php echo __('Log in') ?>" name='click'>
                        <?php if (defined('_ENABLE_REGISTRATION')) { ?>
-                               <a class="newAcctPrompt" href="register.php">Create new account</a>
+                               <input type="submit" class="button" onclick="return gotoRegForm()"
+                                       value="<?php echo __("Create new account") ?>"/>
                        <?php } ?>
 
-                       <input type="submit" class="button" value="<?php echo __('Log in') ?>" name='click'>
                                <input type="hidden" name="action" value="login">
                                <input type="hidden" name="rt" 
                                        value="<?php if ($return_to != 'none') { echo $return_to; } ?>">