summaryrefslogtreecommitdiff
path: root/plugins/auth_internal
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-02-19 20:17:13 +0300
committerAndrew Dolgov <[email protected]>2019-02-19 20:17:13 +0300
commit3b057d5f02d8e482262459f5ed1fe0ac7cdd03db (patch)
treeae0993ab6ce1143ad9383fdb1074dcf690a91f81 /plugins/auth_internal
parent005b90cedea903bc5b0ab9450a72e192a4ba3427 (diff)
OTP: css fixes
Diffstat (limited to 'plugins/auth_internal')
-rw-r--r--plugins/auth_internal/init.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/plugins/auth_internal/init.php b/plugins/auth_internal/init.php
index a6829ac02..e1eee9f15 100644
--- a/plugins/auth_internal/init.php
+++ b/plugins/auth_internal/init.php
@@ -54,7 +54,9 @@ class Auth_Internal extends Plugin implements IAuthModule {
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<?php echo stylesheet_tag("css/default.css") ?>
- <body class="ttrss_utility otp"><div class="content">
+ <body class="ttrss_utility otp">
+ <h1><?php echo __("Authentication") ?></h1>
+ <div class="content">
<form action="public.php?return=<?php echo $return ?>"
method="POST" class="otpform">
<input type="hidden" name="op" value="login">
@@ -64,9 +66,11 @@ class Auth_Internal extends Plugin implements IAuthModule {
<input type="hidden" name="remember_me" value="<?php echo htmlspecialchars($_POST["remember_me"]) ?>">
<input type="hidden" name="profile" value="<?php echo htmlspecialchars($_POST["profile"]) ?>">
- <label><?php echo __("Please enter your one time password:") ?></label>
- <input autocomplete="off" size="6" name="otp" value=""/>
- <input type="submit" value="Continue"/>
+ <fieldset>
+ <label><?php echo __("Please enter your one time password:") ?></label>
+ <input autocomplete="off" size="6" name="otp" value=""/>
+ <input type="submit" value="Continue"/>
+ </fieldset>
</form></div>
<script type="text/javascript">
document.forms[0].otp.focus();