mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
front-end example for listing users and creating users
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,15 @@
|
||||
@extends('layouts.base_portal')
|
||||
@section('inner_content')
|
||||
<registration-form-component ref="registration" :email="user@example.com" section="RegistrationSection"></registration-form-component>
|
||||
<list-component :options="{active: true}" section="listUsersSection" endpoint="{{ route('api.account.user.list') }}">
|
||||
<div class="row" slot="header">
|
||||
<div class="col">
|
||||
<div class="all-caps font-lato m-b-0 text-info bold fs-12">Active users</div>
|
||||
<p class="fs-9 all-caps light font-lato muted m-b-0">List of the system currently active users</p>
|
||||
</div>
|
||||
</div>
|
||||
<template slot="list" slot-scope="{data}">
|
||||
<user-component :data="data"></user-component>
|
||||
</template>
|
||||
</list-component>
|
||||
@endSection
|
||||
Reference in New Issue
Block a user