Advertisement
Guest User

Untitled

a guest
May 27th, 2015
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 KB | None | 0 0
  1. <!-- my page -->
  2. <!DOCTYPE html>
  3. <!--
  4.  
  5. TABLE OF CONTENTS.
  6.  
  7. Use search to find needed section.
  8.  
  9. ===================================================================
  10.  
  11. | 1. $BODY | Body |
  12. | 2. $MAIN_NAVIGATION | Main navigation |
  13. | 3. $NAVBAR_ICON_BUTTONS | Navbar Icon Buttons |
  14. | 4. $MAIN_MENU | Main menu |
  15. | 5. $UPLOADS_CHART | Uploads chart |
  16. | 6. $EASY_PIE_CHARTS | Easy Pie charts |
  17. | 7. $EARNED_TODAY_STAT_PANEL | Earned today stat panel |
  18. | 8. $RETWEETS_GRAPH_STAT_PANEL | Retweets graph stat panel |
  19. | 9. $UNIQUE_VISITORS_STAT_PANEL | Unique visitors stat panel |
  20. | 10. $SUPPORT_TICKETS | Support tickets |
  21. | 11. $RECENT_ACTIVITY | Recent activity |
  22. | 12. $NEW_USERS_TABLE | New users table |
  23. | 13. $RECENT_TASKS | Recent tasks |
  24.  
  25. ===================================================================
  26.  
  27. -->
  28.  
  29.  
  30. <!--[if IE 8]> <html class="ie8"> <![endif]-->
  31. <!--[if IE 9]> <html class="ie9 gt-ie8"> <![endif]-->
  32. <!--[if gt IE 9]><!--> <html class="gt-ie8 gt-ie9 not-ie"> <!--<![endif]-->
  33. <head>
  34. <meta charset="utf-8">
  35. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  36. <title>Dashboard - PixelAdmin</title>
  37. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
  38.  
  39. <!-- Open Sans font from Google CDN -->
  40. <link href="http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,600,700,300&subset=latin" rel="stylesheet" type="text/css">
  41.  
  42. <!-- Pixel Admin's stylesheets -->
  43. <link href="assets/stylesheets/bootstrap.min.css" rel="stylesheet" type="text/css">
  44. <link href="assets/stylesheets/pixel-admin.min.css" rel="stylesheet" type="text/css">
  45. <link href="assets/stylesheets/widgets.min.css" rel="stylesheet" type="text/css">
  46. <link href="assets/stylesheets/rtl.min.css" rel="stylesheet" type="text/css">
  47. <link href="assets/stylesheets/themes.min.css" rel="stylesheet" type="text/css">
  48. <link href="//cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/css/select2.min.css" rel="stylesheet" />
  49. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
  50. <script src="//cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/js/select2.min.js"></script>
  51.  
  52. <!--[if lt IE 9]>
  53. <script src="assets/javascripts/ie.min.js"></script>
  54. <![endif]-->
  55. <script type="text/javascript">
  56. $(document).ready(function() {
  57. $("#select").select2({
  58. placeholder: "select something",
  59. allowClear: true
  60. });
  61. });
  62. </script>
  63. </head>
  64.  
  65. <body>
  66. <!-- FILTER SEARCH -->
  67. <div class="filter">
  68. <div class="panel-heading">
  69. <span class="panel-title">Search for configs!</span>
  70. </div>
  71. <div class="panel-body">
  72. <form class="form-inline">
  73. <div class="form-group">
  74. <label class="sr-only" for="exampleInputEmail2">Email address</label>
  75. <input type="email" class="form-control" id="exampleInputEmail2" placeholder="Author Name">
  76. </div>
  77. <div class="form-group">
  78. <label class="sr-only" for="exampleInputPassword2">Password</label>
  79. <select id="select">
  80. <option value="volvo">Volvo</option>
  81. <option value="saab">Saab</option>
  82. <option value="opel">Opel</option>
  83. <option value="audi">Audi</option>
  84. </select>
  85. </div>
  86. <div class="checkbox">
  87. <label>
  88. <input type="checkbox" class="px"> <span class="lbl">Remember me</span>
  89. </label>
  90. </div>
  91. <button type="submit" class="btn btn-primary">Sign In</button>
  92. </form>
  93. </div>
  94. </div>
  95. </body>
  96. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement