49 lines
2.2 KiB
PHP
Executable File
49 lines
2.2 KiB
PHP
Executable File
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
|
<h2><?php echo i18n('Edit'); echo ': ' . $username; ?></h2>
|
|
<br>
|
|
<?php
|
|
$role = user('role', $username);
|
|
$password = user('password', $username);
|
|
?>
|
|
<form method="POST">
|
|
<input type="hidden" name="csrf_token" value="<?php echo get_csrf(); ?>">
|
|
<div class="form-group row">
|
|
<label for="site.url" class="col-sm-2 col-form-label"><?php echo i18n('Username');?></label>
|
|
<div class="col-sm-10">
|
|
<input type="text" name="username" readonly class="form-control" id="username-id" value="<?php echo $username;?>">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label"><?php echo i18n('Role');?></label>
|
|
<div class="col-sm-10">
|
|
<div class="col-sm-10">
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="radio" name="role-name" id="admin-id" value="admin" <?php if ($role === 'admin'):?>checked<?php endif;?>>
|
|
<label class="form-check-label" for="admin-id">
|
|
Admin
|
|
</label>
|
|
</div>
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="radio" name="role-name" id="editor-id" value="editor" <?php if ($role === 'editor'):?>checked<?php endif;?>>
|
|
<label class="form-check-label" for="editor-id">
|
|
Editor
|
|
</label>
|
|
</div>
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="radio" name="role-name" id="author-id" value="author" <?php if ($role === 'author'):?>checked<?php endif;?>>
|
|
<label class="form-check-label" for="author-id">
|
|
Author
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label for="site.url" class="col-sm-2 col-form-label"><?php echo i18n('Password');?></label>
|
|
<div class="col-sm-10">
|
|
<input type="password" name="password" class="form-control" id="password" value="" placeholder="<?php echo i18n('change_password');?>">
|
|
</div>
|
|
</div>
|
|
<input type="submit" class="btn btn-primary" style="width:100px;" value="<?php echo i18n('Save');?>">
|
|
<span><a class="btn btn-primary" href="<?php echo site_url();?>admin/users"><?php echo i18n('Cancel');?></a></span>
|
|
</form>
|