blob: e14525b5ed93273874c657e0b473dd985afacfd5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<form method="post" action="<?= url::site("admin/identity/change") ?>">
<?= access::csrf_form_field() ?>
<?= form::hidden("provider", $new_provider) ?>
<p><span class="ui-icon ui-icon-alert" style="float: left; margin:0 7px 20px 0;"></span>
<?= t("Do you really want to switch Identity providers? Continuing will delete all existing users.") ?>
</p>
</form>
|