From bd0551b22076b82a6d49e9f7a2b2e0c90a1b2326 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Fri, 05 Feb 2016 07:25:27 -0500 Subject: [PATCH] Secure also downloads of addressbook exports, managesieve script exports and Enigma keys exports --- skins/larry/templates/login.html | 44 ++++++++++++++++++++++++++++++++------------ 1 files changed, 32 insertions(+), 12 deletions(-) diff --git a/skins/larry/templates/login.html b/skins/larry/templates/login.html index ee4a13e..557b029 100644 --- a/skins/larry/templates/login.html +++ b/skins/larry/templates/login.html @@ -1,5 +1,5 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> +<roundcube:object name="doctype" value="html5" /> +<html> <head> <title><roundcube:object name="pagetitle" /></title> <meta name="Robots" content="noindex,nofollow" /> @@ -7,24 +7,27 @@ </head> <body> +<h1 class="voice"><roundcube:object name="productname" /> <roundcube:label name="login" /></h1> + <div id="login-form"> -<div class="box-inner"> -<roundcube:object name="logo" src="/images/roundcube_logo.png" id="logo" border="0" /> +<div class="box-inner" role="main"> +<roundcube:object name="logo" src="/images/roundcube_logo.png" id="logo" /> -<form name="form" action="./" method="post"> -<roundcube:object name="loginform" form="form" size="40" /> - -<p class="buttons"><input type="submit" class="button mainaction" value="<roundcube:label name='login' />" /></p> - +<roundcube:form name="form" method="post"> +<roundcube:object name="loginform" form="form" size="40" submit=true /> </form> + </div> -<div class="box-bottom"> +<div class="box-bottom" role="complementary"> <roundcube:object name="message" id="message" /> + <noscript> + <p class="noscriptwarning"><roundcube:label name="noscriptwarning" /></p> + </noscript> </div> -<div id="bottomline"> - Roundcube Webmail <roundcube:object name="version" /> +<div id="bottomline" role="contentinfo"> + <roundcube:object name="productname" /> <roundcube:object name="version" condition="config:display_version" /> <roundcube:if condition="config:support_url" /> ● <a href="<roundcube:var name='config:support_url' />" target="_blank" class="support-link"><roundcube:label name="support" /></a> <roundcube:endif /> @@ -32,5 +35,22 @@ </div> </div> +<roundcube:include file="/includes/footer.html" /> + +<roundcube:object name="preloader" images=" + /images/ajaxloader.gif + /images/ajaxloader_dark.gif + /images/buttons.png + /images/addcontact.png + /images/filetypes.png + /images/listicons.png + /images/messages.png + /images/messages_dark.png + /images/quota.png + /images/selector.png + /images/splitter.png + /images/watermark.jpg +" /> + </body> </html> -- Gitblit v1.9.1