-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.html
33 lines (31 loc) · 1006 Bytes
/
user.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
{{ include('snippets/meta.html', {"title": "Plenty Admin Dashboard", "description": "This is the dashboard of the admin UI", "author": "Jamie McDonnell"}) }}
</head>
{{ include('snippets/header.html', {"page": "user", "dashboard" : false, "settings" : false, "contact" : false, "organization" : false}) }}
<div class="container-fluid">
<div class="row"> {{ include('snippets/sidebar-nav.html') }}
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2">
<ol class="breadcrumb">
<li><a href="organization.html?sub=users">Organization 1</a></li>
<li class="active">User A</li>
</ol>
<h1 class="page-header">User A</h1>
<div class="row userDetails">
- First Name
- Last name
- mobile number
- timezone
- username
- password
- enabled
- date created
- date last modified
</div>
</div>
</div>
</div>
{{ include('snippets/footer.html') }}
<script src="js/user.js"></script>
</body></html>