{extends "../@layout.xml"}
{block title}{_my_settings} - {_two_factor_authentication}{/block}

{block header}
    <a href="/settings">{_my_settings}</a> ยป {_two_factor_authentication}
{/block}

{block content}
    {_two_factor_authentication_settings_1|noescape}
    <p>{_two_factor_authentication_settings_2}</p>
    <div style="text-align: center;">
        <img width="225" height="225" src="data:{$qrCodeType};base64,{$qrCodeData}">
    </div>
    <p>{tr("two_factor_authentication_settings_3", $secret)|noescape}</p>
    <p>{_two_factor_authentication_settings_4}</p>
    <form method="POST">
        <table cellspacing="7" cellpadding="0" width="40%" border="0" align="center">
            <tbody>
                <tr>
                    <td>
                        <span>{_code}: </span>
                    </td>
                    <td>
                        <input type="text" name="code" required />
                    </td>
                </tr>
                <tr>
                    <td>
                        <span>{_password}: </span>
                    </td>
                    <td>
                        <input type="password" name="password" required />
                    </td>
                </tr>
                <tr>
                    <td>
                        
                    </td>
                    <td>
                        <input type="hidden" name="secret" value="{$secret}" />
                        <input type="hidden" name="hash" value="{$csrfToken}" />
                        <input type="submit" value="{_enable}" class="button" />
                    </td>
                </tr>
            </tbody>
        </table>
    </form>
{/block}