Skip to content

Commit ab9c5bb

Browse files
committed
Add missing user id field to page
1 parent 420091e commit ab9c5bb

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

src/templates/User/Activate.phtml

+11-2
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,22 @@ require('./header.inc.phtml');
3434
<?php } ?>
3535
<form method="GET" action="?">
3636
<section>
37+
<label for="u">User Id:</label><br/>
38+
<input
39+
type="text"
40+
name="u"
41+
id="user_id"
42+
value="<?php echo filter_var($this->getContext()->user_id, FILTER_SANITIZE_FULL_SPECIAL_CHARS); ?>"
43+
tabindex="1"
44+
required
45+
/><br/>
3746
<label for="t">Token:</label><br/>
3847
<input
3948
type="text"
4049
name="t"
4150
id="token"
4251
value="<?php echo filter_var($this->getContext()->token, FILTER_SANITIZE_FULL_SPECIAL_CHARS); ?>"
43-
tabindex="1"
52+
tabindex="2"
4453
required
4554
autofocus="autofocus"
4655
/>
@@ -49,7 +58,7 @@ require('./header.inc.phtml');
4958
<input
5059
type="submit"
5160
value="Activate Account"
52-
tabindex="2"
61+
tabindex="3"
5362
/>
5463
</section>
5564
</form>

0 commit comments

Comments
 (0)