rbac crud
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container grid" style="height:100vh; grid-template-columns: 1fr 1fr;">
|
||||
<div class="card static" id="rbacEntities">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="card static" id="rbacEntityContent">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="static" style="pointer-events:none;position:absolute; bottom:20px;right:0px;">
|
||||
<button id="rbacCreateAuthentication" class="yellowbutton" onclick="test()" style="pointer-events:auto">Neuer Benutzer</button>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
reloadPluginScript('/javascript/rbacAPI.js');
|
||||
|
||||
|
||||
fetch('/api/rbac/getEntities', { method: 'POST' })
|
||||
.then(res => res.json())
|
||||
.then(json => {
|
||||
|
||||
});
|
||||
</script>
|
||||
</html>
|
||||
Reference in New Issue
Block a user