Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. <div class="epx-container">
  2. <!--<div id="pse-logo" class="epx-group">-->
  3.  
  4. <div class="row page-header" id="naglowek">
  5. <div class="col-md-3">
  6. <h2>
  7. <img alt="PSE" src="src/css/images/logo.gif">
  8. </h2>
  9. </div>
  10. <div class="col-md-6">
  11. <h2 class="pse-page-title">
  12. <span>{{title}}</span>
  13. </h2>
  14. </div>
  15. <div class="col-md-3" *ngIf="authInfo">
  16. <div class="row" style="text-align: right; padding-top:20px; color: #212121;">
  17.  
  18. <small>{{authInfo.user.sys_name}}</small>
  19.  
  20. </div>
  21. <div class="row" style="text-align: right; color: #212121;">
  22.  
  23. <strong>{{authInfo.user.uname}}</strong>
  24.  
  25. </div>
  26. </div>
  27. </div>
  28. <!--</div>-->
  29.  
  30. <!--<div class="col-x-6">
  31. <img src="src/css/images/logo-pse.png" alt="PSE" style="width:195px;height:26px;display:inline-block;line-height:28px;">
  32. <span class="epx-header-app">{{title}}</span>
  33. </div>
  34. <div class="col-x-6" style="text-align:right;">
  35. <div *ngIf="authInfo" style="line-height:28px;">
  36. <span class="glyphicon glyphicon-user"></span>
  37. <strong>{{authInfo.user.login}}</strong>
  38. <span>{{authInfo.user.uname}}</span>
  39. </div>
  40. </div>-->
  41.  
  42. <div>
  43. <div>
  44. <p-menubar [model]="menuItems" kipMenuHighlight></p-menubar>
  45. </div>
  46. <p-growl [value]="messages" [sticky]="false" [life]="2000"></p-growl>
  47. <p-growl [value]="errors" [sticky]="true"></p-growl>
  48. <router-outlet></router-outlet>
  49. <p-dialog [header]="detailsTitle" [(visible)]="detailsVisible" [closable]="false" [modal]="true" [appendTo]="body" #detailsDialog>
  50. <router-outlet name="detailsWindow"></router-outlet>
  51. </p-dialog>
  52. <div [ngBusy]="{busy: busyIndicator, message: 'Proszę czekać...'}"></div>
  53. </div>
  54. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement