Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/twofactor_totp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2016-06-04 20:11:42 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2016-06-04 20:11:42 +0300
commit717c0e73dc34379c6b073b62c01112cc54bcf665 (patch)
tree528f0ec791a8da7736348ed867905862188b87e9 /templates
parent42156f9b6e7705f3d8d3c634beffb8ee34886278 (diff)
remove unused variable, disable autocomplete
Diffstat (limited to 'templates')
-rw-r--r--templates/challenge.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/templates/challenge.php b/templates/challenge.php
index ca462e9..a3b76f9 100644
--- a/templates/challenge.php
+++ b/templates/challenge.php
@@ -1,8 +1,4 @@
-<?php if (isset($_['qr'])): ?>
-<a href="<?php echo $_['qr']; ?>" target="_blank">Scan QR Code</a>
-<?php endif; ?>
-
<form method="POST">
- <input type="text" name="challenge" required="required">
+ <input type="text" name="challenge" required="required" autocomplete="off" autocapitalize="off">
<input type="submit" class="button" value="Verify">
</form>