Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Smarty 2.12 KB | None | 0 0
  1. <div class="title corners iblock">
  2.     <div class="padding float-left" style="font-size:14px;"><h3>User Overview</h3></div>
  3. </div><br /><br />
  4.  
  5. <div id="tabContents">
  6. <ul class="tabs" id="tabs">
  7. <li><a href="#info" class="tabs" id="tab_info">Notifications</a></li>
  8. <li><a href="#idk" class="tabs" id="tab_idk">idk</a></li>
  9. <li><a href="#lol" class="tabs" id="tab_lol">lol</a></li>
  10. </ul>
  11.  
  12. <div class="panel" id="panel_info">
  13. test.
  14. </div>
  15.  
  16. <div class="panel" id="panel_idk">
  17. test.
  18. </div>
  19.  
  20. <div class="panel" id="panel_lol">
  21. test.
  22. </div>
  23.  
  24. </div>
  25.  
  26. <div class="title corners iblock">
  27.     <div class="padding float-left" style="font-size:12px;"><h3>Notifications ({TOTAL})</h3></div>
  28. </div>
  29.     <table class="content" width="100%" cellspacing="1" cellpadding="1" border="0" style="color: #000;">
  30.     <tbody>
  31.         <tr>
  32.             <td class="thead" width="8%">Time</td>
  33.             <td class="thead" width="15%">Title</td>
  34.             <td class="thead" width="25%">Message</td>
  35.         </tr>
  36.        
  37.             <!--<td class="row_color1">Test ?</td>
  38.            <td class="row_color2">Test 2</td>
  39.            <td class="row_color1" style="overflow: scroll;">TEST</td>-->
  40.             <!-- BEGIN user -->
  41.             {user.CONTENT}
  42.             <!-- END user -->
  43.     </tbody>
  44.     </table>
  45.     You can change your notification settings <a href="/{ROOT}user/core/notifications/">here</a>.
  46.     <br /><br />
  47. <div class="title corners iblock">
  48.     <div class="padding float-left" style="font-size:12px;"><h3>User Notes</h3></div>
  49. </div>
  50. <form action="?" method="post">
  51. <!-- BEGIN notes -->
  52. <textarea name="body" style="font-family: inherit;font-size: inherit;" id="code" class="repostField" cols="45" rows="5" style="width:99%">{notes.BODY}</textarea>
  53. <input type="submit" class="button" value="Update Notes" />
  54. <!-- END notes -->
  55. </form>
  56.  
  57. <script type="text/javascript" src="/{ROOT}modules/profile/scripts/stereotabs.js"></script>
  58. <script type="text/javascript">
  59. Event.observe(window, 'load', loadTabs, false);
  60. function loadTabs() {
  61. var tabs = new tabset('tabContents');
  62. tabs.autoActivate($('tab_lol'));
  63. }
  64. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement