forked from lucaspatenaude/ScoreSpot
13 lines
327 B
JavaScript
13 lines
327 B
JavaScript
|
|
// Function to render login.hbs when #user is clicked
|
||
|
|
function renderLogin() {
|
||
|
|
// Assuming you're using jQuery
|
||
|
|
$('#user').on('click', function() {
|
||
|
|
// Load the login.hbs template content using AJAX
|
||
|
|
res.render('/login');
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
// Call the function to enable rendering login.hbs
|
||
|
|
renderLogin();
|
||
|
|
|