Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/phpunit-bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ function getUserIsPIHasAtLeastOneMember()

function getNonExistentUser()
{
return ["user1@nonexistent.test", "foo", "bar", "user1@nonexistent.test"];
return ["user2000@org2.test", "foo", "bar", "user2000@org2.test"];
}

function getAdminUser()
Expand Down
15 changes: 8 additions & 7 deletions webroot/panel/new_account.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,6 @@
<hr>

<label><input type='radio' name='new_user_sel' value='pi'>Request a PI account</label>
<div style='position: relative;display: none;' id='piConfirmWrapper'>
<label><input type='checkbox' id='chk_pi' name='confirm_pi' value='agree'>
I have read the PI <a href="<?php echo $CONFIG["site"]["account_policy_url"]; ?>">
account policy</a> guidelines. </label>
</div>
<br>
<label><input type='radio' name='new_user_sel' value='not_pi' checked>Join an existing PI group</label>

<div style='position: relative;' id='piSearchWrapper'>
Expand All @@ -109,9 +103,16 @@

<hr>

<div style='position: relative;display: none;' id='piConfirmWrapper'>
<label><input type='checkbox' id='chk_pi' name='confirm_pi' value='agree'>
I have read the PI <a href="<?php echo $CONFIG["site"]["account_policy_url"]; ?>">
account policy</a> guidelines. </label>
</div>
<br>

<label><input type='checkbox' id='chk_eula' name='eula' value='agree' required>
I have read and accept the <a target='_blank' href='<?php echo $CONFIG["site"]["terms_of_service_url"]; ?>'>
Unity Terms of Service</a></label>
Unity Terms of Service</a>.</label>

<br>
<input style='margin-top: 10px;' type='submit' value='Request Account'>
Expand Down
Loading