├── images ├── profile.jpg ├── login_bg4.png └── select2 │ ├── select2.png │ ├── select2x2.png │ └── select2-spinner.gif ├── fonts └── font-awesome │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── README.md ├── js ├── main.js ├── index.js ├── dataTables.bootstrap.js ├── jquery.knob.min.js └── bootstrap-select.min.js ├── login.html ├── css ├── select2-bootstrap.css ├── login.css ├── bootstrap-select.min.css ├── awesome-bootstrap-checkbox.css ├── theme.css ├── jquery.dataTables.min.css ├── style.css ├── font-awesome.min.css └── select2.css ├── register.html ├── custom-dashboard.html ├── index.html └── form.html /images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulumao/flat-admin-bootstrap-templates/HEAD/images/profile.jpg -------------------------------------------------------------------------------- /images/login_bg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulumao/flat-admin-bootstrap-templates/HEAD/images/login_bg4.png -------------------------------------------------------------------------------- /images/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulumao/flat-admin-bootstrap-templates/HEAD/images/select2/select2.png -------------------------------------------------------------------------------- /images/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulumao/flat-admin-bootstrap-templates/HEAD/images/select2/select2x2.png -------------------------------------------------------------------------------- /fonts/font-awesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulumao/flat-admin-bootstrap-templates/HEAD/fonts/font-awesome/FontAwesome.otf -------------------------------------------------------------------------------- /images/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulumao/flat-admin-bootstrap-templates/HEAD/images/select2/select2-spinner.gif -------------------------------------------------------------------------------- /fonts/font-awesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulumao/flat-admin-bootstrap-templates/HEAD/fonts/font-awesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/font-awesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulumao/flat-admin-bootstrap-templates/HEAD/fonts/font-awesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /fonts/font-awesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulumao/flat-admin-bootstrap-templates/HEAD/fonts/font-awesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Flat Admin Bootstrap Templates 2 | Completely free bootstrap templates with Bootstrap 3. 3 | 4 | - Awesome plugin. such as dataTable.js , bootstrap-select.js, chart.js 5 | - Resposive admin templates for all devices. 6 | 7 | Screenshot 8 |  9 | 10 | [Live Demo](http://www.tui2tone.me/flat-admin-bootstrap-templates/) 11 | -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- 1 | // Toggle Sidebar 2 | 3 | $(function() { 4 | $(".toggle-sidebar").bind('click', function() { 5 | $("body").toggleClass("sidebar-collapse"); 6 | }); 7 | 8 | 9 | $(function() { 10 | $(".dial").knob(); 11 | }); 12 | }); 13 | 14 | $(function() { 15 | $(".dropdown").hover( 16 | function() { 17 | $('.dropdown-menu', this).stop(true, true).fadeIn("fast"); 18 | $(this).toggleClass('open'); 19 | $('b', this).toggleClass("caret caret-up"); 20 | }, 21 | function() { 22 | $('.dropdown-menu', this).stop(true, true).fadeOut("fast"); 23 | $(this).toggleClass('open'); 24 | $('b', this).toggleClass("caret caret-up"); 25 | }); 26 | }); 27 | 28 | // Load More 29 | $(function() { 30 | $("#message-load-more").bind('click', function() { 31 | $("#message-load-more .fa").toggleClass("fa-spin"); 32 | return false; 33 | }); 34 | }); 35 | 36 | // Select2 & Bootstrap-select 37 | $(function() { 38 | $('.selectpicker').selectpicker(); 39 | }); 40 | -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- 1 | 2 | // Chart.JS 3 | $(function() { 4 | Chart.defaults.global.responsive = true; 5 | 6 | var ctx = $("#dashboard-order-chart").get(0).getContext("2d"); 7 | var ctx2 = $("#dashboard-stat-chart").get(0).getContext("2d"); 8 | var options = { 9 | bezierCurve: false, 10 | pointDotRadius : 8, 11 | datasetStroke : true, 12 | datasetStrokeWidth : 2, 13 | scaleGridLineColor : "rgba(0,0,0,.05)", 14 | scaleFontColor: "#666", 15 | scaleLineColor: "rgba(0,0,0,0)", 16 | scaleShowVerticalLines: false, 17 | scaleShowGridLines : true, 18 | scaleOverride: false, 19 | scaleSteps: 10, 20 | pointDotStrokeWidth : 2, 21 | 22 | } 23 | 24 | var options2 = { 25 | percentageInnerCutout : 75, 26 | legendTemplate : "
| First Name | 388 |Last Name | 389 |Username | 390 |
|---|---|---|
| Mark | 395 |Otto | 396 |@mdo | 397 |
| Jacob | 400 |Thornton | 401 |@fat | 402 |
| Larry | 405 |the Bird | 406 ||
| Mark | 410 |Otto | 411 |@mdo | 412 |
| Jacob | 415 |Thornton | 416 |@fat | 417 |
| Larry | 420 |the Bird | 421 |