diff options
author | Freya Murphy <freya@freyacat.org> | 2024-12-20 04:15:58 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-12-20 04:17:05 -0500 |
commit | 4334596d4bebc9a76f5ca8400813847eef5b3bb7 (patch) | |
tree | 4bd2229fd48715bcf4ae96bc3d070b7f3c29aa58 /src/web/_views/apps/auth | |
parent | add lang column to user (diff) | |
download | xssbook2-4334596d4bebc9a76f5ca8400813847eef5b3bb7.tar.gz xssbook2-4334596d4bebc9a76f5ca8400813847eef5b3bb7.tar.bz2 xssbook2-4334596d4bebc9a76f5ca8400813847eef5b3bb7.zip |
rework styles with scss
Diffstat (limited to 'src/web/_views/apps/auth')
-rw-r--r-- | src/web/_views/apps/auth/login.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/web/_views/apps/auth/login.php b/src/web/_views/apps/auth/login.php index c12af57..1741ac5 100644 --- a/src/web/_views/apps/auth/login.php +++ b/src/web/_views/apps/auth/login.php @@ -1,6 +1,6 @@ <?php /* Copyright (c) 2024 Freya Murphy */ ?> <?php /* vi: syntax=php */ ?> -<div id="main-content"> +<main id="main"> <div class="branding col"> <h1>xssbook</h1> <span><?=ucfirst(lang('login_branding'))?></span> @@ -31,18 +31,18 @@ </label> </div> <?=ilang('action_login', - class: 'btn btn-submit btn-wide', + class: 'btn btn-submit grow', button: TRUE, attrs: array('type' => 'submit') )?> <?=ilang('action_forgot_passwd', - class: 'btn btn-line btn-blue btn-wide mt' + class: 'btn btn-blend btn-primary grow mt' )?> </form> <hr> <?=ilang('action_create_account', id: 'action-register', - class: 'btn btn-success btn-wide', + class: 'btn btn-success grow', button: TRUE, attrs: array('type' => 'submit') )?> @@ -84,4 +84,4 @@ }); }) </script> -</div> +</main> |