82df35a59b
This is a major change for the next release of Miniflux. - There is now only one database that can supports multiple users - There is no automated schema migration for this release - A migration procedure is available in the ChangeLog file
11 lines
491 B
PHP
11 lines
491 B
PHP
<div class="page-header">
|
|
<h2><?php echo t('Confirmation') ?></h2>
|
|
</div>
|
|
|
|
<p class="alert alert-info"><?php echo t('Do you really want to remove this user: "%s"?', Miniflux\Helper\escape($user['username'])) ?></p>
|
|
|
|
<div class="form-actions">
|
|
<a href="?action=remove-user&user_id=<?php echo $user['id'] ?>&csrf=<?php echo $csrf_token ?>" class="btn btn-red"><?php echo t('Remove') ?></a>
|
|
<?php echo t('or') ?> <a href="?action=users"><?php echo t('cancel') ?></a>
|
|
</div>
|