Files
librenms-librenms/resources/views/user/form.blade.php
SourceDoctor ce628399a9 Allow user activation/deactivation (MySQL auth) (#10511)
* user deactivation feature

* update db_schema.yaml

* travis fix

* readd sqlfile with alter statement

* ..

* revert force push

* combine all queries

* fix query

* user enable/disable only visible on mysql authorization

* Update form.blade.php

* Update index.blade.php

* disable 'enabled' on own profile

* bootstraping checkboxes
2019-11-08 06:32:57 +00:00

94 lines
4.7 KiB
PHP

<div class="form-group {{ $errors->has('realname') ? 'has-error' : '' }}">
<label for="realname" class="control-label col-sm-3 text-nowrap">@lang('Real Name')</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="realname" name="realname" value="{{ old('realname', $user->realname) }}">
<span class="help-block">{{ $errors->first('realname') }}</span>
</div>
</div>
@if(\LibreNMS\Config::get('auth_mechanism') == 'mysql')
<div class="form-group @if($errors->has('enabled')) has-error @endif">
<label for="enabled" class="control-label col-sm-3">@lang('Enabled')</label>
<div class="col-sm-9">
<input type="hidden" value="@if(Auth::id() == $user->user_id) 1 else 0 @endif" name="enabled">
<input type="checkbox" id="enabled" name="enabled" data-size="small" @if(old('enabled', $user->enabled)) checked @endif @if(Auth::id() == $user->user_id) disabled @endif>
</div>
</div>
@endif
<div class="form-group @if($errors->has('email')) has-error @endif">
<label for="email" class="control-label col-sm-3">@lang('Email')</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="email" name="email" value="{{ old('email', $user->email) }}">
<span class="help-block">{{ $errors->first('email') }}</span>
</div>
</div>
<div class="form-group @if($errors->has('descr')) has-error @endif">
<label for="descr" class="control-label col-sm-3">@lang('Description')</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="descr" name="descr" value="{{ old('descr', $user->descr) }}">
<span class="help-block">{{ $errors->first('descr') }}</span>
</div>
</div>
@can('admin')
<div class="form-group @if($errors->has('level')) has-error @endif">
<label for="level" class="control-label col-sm-3">@lang('Level')</label>
<div class="col-sm-9">
<select class="form-control" id="level" name="level">
<option value="1">@lang('Normal')</option>
<option value="5" @if(old('level', $user->level) == 5) selected @endif>@lang('Global Read')</option>
<option value="10" @if(old('level', $user->level) == 10) selected @endif>@lang('Admin')</option>
@if(old('level', $user->level) == 11)<option value="11" selected>@lang('Demo')</option>@endif
</select>
<span class="help-block">{{ $errors->first('level') }}</span>
</div>
</div>
@endcan
<div class="form-group @if($errors->has('dashboard')) has-error @endif">
<label for="dashboard" class="control-label col-sm-3">@lang('Dashboard')</label>
<div class="col-sm-9">
<select id="dashboard" name="dashboard" class="form-control">
@foreach($dashboards as $dash)
<option value="{{ $dash->dashboard_id }}" @if(old('dashboard', $dashboard) == $dash->dashboard_id) selected @endif>{{ $dash->dashboard_name }}</option>
@endforeach
</select>
<span class="help-block">{{ $errors->first('dashboard') }}</span>
</div>
</div>
@if($user->canSetPassword(auth()->user()))
<div class="form-group @if($errors->hasAny(['old_password', 'new_password', 'new_password_confirmation'])) has-error @endif">
<label for="password" class="control-label col-sm-3">@lang('Password')</label>
<div class="col-sm-9">
@cannot('admin')
<input type="password" class="form-control" id="old_password" name="old_password" placeholder="@lang('Current Password')">
@endcannot
<input type="password" autocomplete="off" class="form-control" id="new_password" name="new_password" placeholder="@lang('New Password')">
<input type="password" autocomplete="off" class="form-control" id="new_password_confirmation" name="new_password_confirmation" placeholder="@lang('Confirm Password')">
<span class="help-block">
@foreach($errors->get('*password*') as $error)
{{ implode(' ', $error) }}
@endforeach
</span>
</div>
</div>
@endif
@if(\LibreNMS\Authentication\LegacyAuth::get()->canUpdatePasswords())
<div class="form-group @if($errors->has('can_modify_passwd')) has-error @endif">
<label for="can_modify_passwd" class="control-label col-sm-3">@lang('Can Modify Password')</label>
<div class="col-sm-9">
<input type="hidden" value="0" name="can_modify_passwd">
<input type="checkbox" id="can_modify_passwd" name="can_modify_passwd" data-size="small" @if(old('can_modify_passwd', $user->can_modify_passwd)) checked @endif>
<span class="help-block">{{ $errors->first('can_modify_passwd') }}</span>
</div>
</div>
@endif
<script>
$("[type='checkbox']").bootstrapSwitch();
</script>