Current File : //var/webuzo-data/roundcube/public_html/plugins/webuzo/skins/classic/templates/soft2fa_verify.html
<roundcube:object name="doctype" value="html5" />
<html>
<head>
<title><roundcube:object name="pagetitle" /></title>
<roundcube:include file="/includes/links.html" />
<style>
    #login-form {
        width: 400px;
    }

    .text-center{
        text-align: center !important;
    }

    .mt-4{
        margin-top: 12px;
    }

    .m-auto{
        margin: auto;
    }

    h5{
        font-size: 12px !important;
    }

    .button {
        display: block;
        padding: 14px 0;
        text-transform: uppercase;
        background: #006a9d !important;
        color: #e2e8e9 !important;
        width: 100%;
        height: auto;
    }

    .boxcontent {
        padding: 0px 10px 10px 10px;
    }

    #login-bottomline {
        margin: 20px 0;
    }

    #login-form input[type="text"]{
        width: 100%;
        border-color: #666;
        padding: 12px 0;
        text-indent: 11px;
        font-size: 12px;
    }

    #login-form #message {
        min-height: 0;
        padding: 0;
        text-align: center;
        margin-bottom: 18px;
    }

    #login-form #message div {
        font-size: 12px;
        background: #e6bf71;
        width: 100%;
        border-radius: 5px;
        padding: 12px 0;
    }
</style>
</head> 
<div id="login-form" class="text-center 2fa-verify-form">
    <roundcube:object name="message" id="message" />
    <roundcube:object class="m-auto" name="logo" style="top:0;" src="/images/roundcube_logo.png" id="logo" border="0" />
    <roundcube:if condition="empty(env:soft2fa_verified)">
        <div class="boxcontent">
            <h5><roundcube:label name="webuzo.verify_text" /></h5>
            <form name="soft2faform" id="soft2faform" method="post" action="./?_task=login&_action=plugin.verify2fa">
                <div class="row">
                    <roundcube:object name="csrf_token" />
                    <roundcube:object name="soft2fa_ui_form" />
                </div>
            </form>
            <div class="mt-4">
                <a href="<roundcube:var name='env:rc_webmail_url' />" class="support-link"><roundcube:label name="webuzo.back_to_login" /></a>
            </div>
            <div id="login-bottomline" class="mt-4">
                <roundcube:var name="config:product_name" condition="config:display_product_info &gt; 0" />
                <roundcube:object name="version" condition="config:display_product_info == 2" />
                <roundcube:if condition="config:support_url" />
                    &nbsp;&#9679;&nbsp; <a href="<roundcube:var name='config:support_url' />" target="_blank" class="support-link"><roundcube:label name="support" /></a>
                <roundcube:endif>
                <roundcube:container name="loginfooter" id="bottomline" />
            </div>
        </div>
    <roundcube:else />
        <div class="boxcontent verified">
            <h5><roundcube:label name="webuzo.verified_text" /></h5>
            <a href="<roundcube:var name='env:rc_webmail_url' />" class="button mainaction submit btn btn-primary btn-md text-uppercase w-100"><roundcube:label name="webuzo.redirect_to_index" /></a>
        </div>
    <roundcube:endif>
</div>

<noscript>
    <p id="login-noscriptwarning"><roundcube:label name="noscriptwarning" /></p>
</noscript>

<roundcube:include file="includes/footer.html" />