add some styling to otp form

master
Andrew Dolgov 12 years ago
parent 9deca86d96
commit da1e51cdfb

@ -52,9 +52,10 @@ class Auth_Internal extends Plugin implements IAuthModule {
$return = urlencode($_REQUEST["return"]); $return = urlencode($_REQUEST["return"]);
?><html> ?><html>
<head><title>Tiny Tiny RSS</title></head> <head><title>Tiny Tiny RSS</title></head>
<body> <?php echo stylesheet_tag("utility.css") ?>
<body class="otp"><div class="content">
<form action="public.php?return=<?php echo $return ?>" <form action="public.php?return=<?php echo $return ?>"
method="POST"> method="POST" class="otpform">
<input type="hidden" name="op" value="login"> <input type="hidden" name="op" value="login">
<input type="hidden" name="login" value="<?php echo htmlspecialchars($login) ?>"> <input type="hidden" name="login" value="<?php echo htmlspecialchars($login) ?>">
<input type="hidden" name="password" value="<?php echo htmlspecialchars($password) ?>"> <input type="hidden" name="password" value="<?php echo htmlspecialchars($password) ?>">
@ -62,7 +63,7 @@ class Auth_Internal extends Plugin implements IAuthModule {
<label><?php echo __("Please enter your one time password:") ?></label> <label><?php echo __("Please enter your one time password:") ?></label>
<input autocomplete="off" size="6" name="otp" value=""/> <input autocomplete="off" size="6" name="otp" value=""/>
<input type="submit" value="Continue"/> <input type="submit" value="Continue"/>
</form> </form></div>
<script type="text/javascript"> <script type="text/javascript">
document.forms[0].otp.focus(); document.forms[0].otp.focus();
</script> </script>

@ -221,3 +221,22 @@ fieldset label {
color : gray; color : gray;
} }
body.otp {
margin : 1em;
padding : 0px;
}
form.otpform {
margin : 0px;
padding : 0px;
}
form.otpform label {
margin : 0px;
padding : 0px;
}
body.otp div.content {
display : inline-block;
width : auto;
}

Loading…
Cancel
Save