Newer
Older
ubFramework / Portal / docroot / templates / user / account / users.html
@Christopher W. Olsen Christopher W. Olsen on 10 Dec 2017 1 KB Cleaning Up Making It A Sub Module
<!--  DataTables addon -->
<link rel="stylesheet" href="/assets/js/DataTables/css/jquery.dataTables.min.css" />
<script src="/assets/js/DataTables/js/jquery.dataTables.js"></script>

<h1>Manage Users</h1>
<hr />
<button id="addUser">Add User</button>
<br />
<table id="userList">
  <thead>
    <tr>
      <th>User</th>
      <th>Admin</th>
      <th>My Account</th>
      <th>Billing</th>
      <th>VoIP</th>
      <th>Fax</th>
      <th>Dialer</th>
      <th>Edit</th>
      <th>Delete</th>
    </tr>
  </thead>
</table>

<a href="/user/account/add_user.php">Add User</a>

<div id="dialog-edit-user" title="Edit User">
<form method="post" id="edit_user_form">
<p class="validateTips">All form fields are required.</p>
<table class="paymentMethods">
<tr>
  <td>E-Mail (Login)</td>
  <td><input type="text" name="data[email]" id="email"></td>
  </tr>
  <tr>
  <td>First name</td>
  <td><input type="text" name="data[first_name]" id="first_name"></td>
  </tr>
  <tr>
  <td>Last Name</td>
  <td><input type="text" name="data[last_name]" id="last_name"></td>
  </tr>
  <tr>
  <td>ACL</td>
  <td>ACL</td>
</tr>
<tr>
  <td colspan="5"><input type="submit" name="data[up]" value="Update"></td>
</tr>
</table>
</form>
</div>

<script src="/assets/js/user/account/users.js"></script>