forked from CakeDC/users
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverify.php
More file actions
20 lines (19 loc) · 1009 Bytes
/
Copy pathverify.php
File metadata and controls
20 lines (19 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="container">
<div class="row">
<div class="col-xs-offset-1 col-xs-10 col-sm-offset-2 col-sm-8 col-md-6 col-md-offset-3">
<div class="users form well well-lg">
<?= $this->Form->create() ?>
<?= $this->Flash->render('auth') ?>
<?= $this->Flash->render() ?>
<fieldset>
<?php if (!empty($secretDataUri)): ?>
<p class='text-center'><img src="<?php echo $secretDataUri; ?>"/></p>
<?php endif; ?>
<?= $this->Form->control('code', ['required' => true, 'label' => __d('cake_d_c/users', 'Verification Code')]) ?>
</fieldset>
<?= $this->Form->button(__d('cake_d_c/users', '<span class="glyphicon glyphicon-log-in" aria-hidden="true"></span> Verify'), ['class' => 'btn btn-primary', 'escapeTitle' => false]); ?>
<?= $this->Form->end() ?>
</div>
</div>
</div>
</div>