aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig
index 5c4e44dd..6ee57443 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig
@@ -86,8 +86,7 @@
86 <br/> 86 <br/>
87 <img id="androidQrcode" /> 87 <img id="androidQrcode" />
88 <script> 88 <script>
89 const imgBase64 = jrQrcode.getQrBase64('wallabag://{{ app.user.username }}@{{ wallabag_url }}'); 89 document.getElementById('androidQrcode').src = jrQrcode.getQrBase64('wallabag://{{ app.user.username }}@{{ wallabag_url }}');
90 document.getElementById('androidQrcode').src = imgBase64;
91 </script> 90 </script>
92 </div> 91 </div>
93 </fieldset> 92 </fieldset>
@@ -186,20 +185,20 @@
186 {{ form_widget(form.user.googleTwoFactor) }} 185 {{ form_widget(form.user.googleTwoFactor) }}
187 {{ form_errors(form.user.googleTwoFactor) }} 186 {{ form_errors(form.user.googleTwoFactor) }}
188 </div> 187 </div>
189 {% for OTPSecret in app.session.flashbag.get('OTPSecret') %} 188 {% for OtpQrCode in app.session.flashbag.get('OtpQrCode') %}
190 <div class="row"> 189 <div class="row">
191 You just enabled the OTP two factor authentication, open your OTP app and use that code to get a one time password. 190 You just enabled the OTP two factor authentication, open your OTP app and use that code to get a one time password.
192 <br/> 191 <br/>
193 That code will disapear after a page reload. 192 That code will disapear after a page reload.
194 <br/><br/> 193 <br/><br/>
195 <strong>{{ OTPSecret.code }}</strong> 194 <strong>{{ app.user.getGoogleAuthenticatorSecret }}</strong>
196 <br/><br/> 195 <br/><br/>
197 Or you can scan that QR Code with your app: 196 Or you can scan that QR Code with your app:
198 <br/> 197 <br/>
199 <img id="2faQrcode" class="hide-on-med-and-down" /> 198 <img id="2faQrcode" class="hide-on-med-and-down" />
200 199
201 <script> 200 <script>
202 document.getElementById('2faQrcode').src = jrQrcode.getQrBase64('{{ OTPSecret.qrCode }}');; 201 document.getElementById('2faQrcode').src = jrQrcode.getQrBase64('{{ OtpQrCode }}');;
203 </script> 202 </script>
204 </div> 203 </div>
205 {% endfor %} 204 {% endfor %}