diff options
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources')
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig | 10 | ||||
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig | 10 |
2 files changed, 20 insertions, 0 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 64305b16..abe5dc9e 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 | |||
@@ -100,6 +100,16 @@ | |||
100 | </div> | 100 | </div> |
101 | </fieldset> | 101 | </fieldset> |
102 | 102 | ||
103 | {% if twofactor_auth %} | ||
104 | <fieldset class="w500p inline"> | ||
105 | <div class="row"> | ||
106 | {{ form_label(form.user.twoFactorAuthentication) }} | ||
107 | {{ form_errors(form.user.twoFactorAuthentication) }} | ||
108 | {{ form_widget(form.user.twoFactorAuthentication) }} | ||
109 | </div> | ||
110 | </fieldset> | ||
111 | {% endif %} | ||
112 | |||
103 | {{ form_rest(form.user) }} | 113 | {{ form_rest(form.user) }} |
104 | </form> | 114 | </form> |
105 | 115 | ||
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig index 0d8e9f24..ab24d4ef 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig | |||
@@ -132,6 +132,16 @@ | |||
132 | </div> | 132 | </div> |
133 | </div> | 133 | </div> |
134 | 134 | ||
135 | {% if twofactor_auth %} | ||
136 | <div class="row"> | ||
137 | <div class="input-field col s12"> | ||
138 | {{ form_widget(form.user.twoFactorAuthentication) }} | ||
139 | {{ form_label(form.user.twoFactorAuthentication) }} | ||
140 | {{ form_errors(form.user.twoFactorAuthentication) }} | ||
141 | </div> | ||
142 | </div> | ||
143 | {% endif %} | ||
144 | |||
135 | <div class="hidden">{{ form_rest(form.user) }}</div> | 145 | <div class="hidden">{{ form_rest(form.user) }}</div> |
136 | <button class="btn waves-effect waves-light" type="submit" name="action"> | 146 | <button class="btn waves-effect waves-light" type="submit" name="action"> |
137 | {% trans %}Save{% endtrans %} | 147 | {% trans %}Save{% endtrans %} |