added flask framework, tambah karyawan page, scan absensi,and tambah karyawan open cv

This commit is contained in:
Naufalakram
2023-11-07 04:17:14 +08:00
parent 7a6ce35ef2
commit 23aec5c980
3186 changed files with 665236 additions and 44 deletions

47
assets/scripts/tourist.demo.js Executable file
View File

@ -0,0 +1,47 @@
/**
* Theme: Ninja Admin Template
* Author: NinjaTeam
* Module/App: Tourist
*/
(function($) {
"use strict";
var steps = [{
content: "<h4>Current online user</h4><p>You can find here status of user who's currently online.</p>",
highlightTarget: true,
nextButton: true,
target: $('#tour-1'),
my: 'top left',
at: 'bottom center'
}, {
content: "<h4>Page title</h4><p>This is page title.</p>",
highlightTarget: false,
nextButton: true,
target: $('#tour-2'),
my: 'top center',
at: 'bottom center'
}, {
content: "<h4>Notification</h4><p>Click here to view notifications.</p>",
highlightTarget: false,
nextButton: true,
target: $('#tour-3'),
my: 'top right',
at: 'bottom center'
}, {
content: "<h4>Search</h4><p>Find somthing userful here!</p>",
highlightTarget: false,
nextButton: true,
target: $('#tour-4'),
my: 'top center',
at: 'bottom center'
}]
var tour = new Tourist.Tour({
steps: steps,
tipClass: 'Bootstrap',
tipOptions:{ showEffect: 'slidein' }
});
tour.start();
})(jQuery);