25 lines
778 B
JavaScript
25 lines
778 B
JavaScript
import { Template } from 'meteor/templating';
|
|
import { ActiveEntry } from 'meteor/clinical:active-entry';
|
|
|
|
|
|
Template.entrySignIn.hooks({
|
|
|
|
rendered: function () {
|
|
// Create Test Drive button dynamically
|
|
let btnTestDrive = $('<button/>', {
|
|
id: 'btnTestDrive',
|
|
text: 'Test Drive',
|
|
class: 'btn btn-primary',
|
|
style: 'position: absolute; width: 150px; top: 20px; right: 20px; padding-left: 0;',
|
|
title: 'Login with Demo User',
|
|
click: function () {
|
|
// Login with demo user
|
|
ActiveEntry.signIn('demo@ohif.org', '12345678aA*');
|
|
}
|
|
});
|
|
|
|
const entrySignIn = this.find('#entrySignIn');
|
|
$(entrySignIn).append(btnTestDrive);
|
|
}
|
|
|
|
}); |