mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-01-05 12:29:54 -06:00
81 lines
3.0 KiB
Plaintext
81 lines
3.0 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<title><%= t("login.title") %></title>
|
|
<link rel="apple-touch-icon" sizes="180x180" href="<%= assetPath %>/images/app-icons/ios/apple-touch-icon.png">
|
|
<link rel="shortcut icon" href="favicon.ico">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="col-xs-12 col-sm-10 col-md-6 col-lg-4 col-xl-4 mx-auto" style="padding-top: 25px;">
|
|
<h1><%= t("login.heading") %></h1>
|
|
|
|
<% if (failedAuth) { %>
|
|
<div class="alert alert-warning">
|
|
<%= t("login.incorrect-password") %>
|
|
</div>
|
|
<% } %>
|
|
|
|
<form action="login" method="POST">
|
|
<div class="form-group">
|
|
<label for="password"><%= t("login.password") %></label>
|
|
<div class="controls">
|
|
<input id="password" name="password" placeholder="" class="form-control" type="password">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="checkbox">
|
|
<label>
|
|
<input id="remember-me" name="rememberMe" value="1" type="checkbox"> <%= t("login.remember-me") %>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<button class="btn btn-success"><%= t("login.button") %></button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
// Required for correct loading of scripts in Electron
|
|
if (typeof module === 'object') {window.module = module; module = undefined;}
|
|
|
|
const device = getDeviceType()
|
|
console.log("Setting device cookie to:", device);
|
|
setCookie("trilium-device", device);
|
|
|
|
function setCookie(name, value) {
|
|
const date = new Date(Date.now() + 10 * 365 * 24 * 60 * 60 * 1000);
|
|
const expires = "; expires=" + date.toUTCString();
|
|
|
|
document.cookie = name + "=" + (value || "") + expires + "; path=/";
|
|
}
|
|
|
|
function getDeviceType() {
|
|
if (window.location.search === '?desktop') return "desktop";
|
|
if (window.location.search === '?mobile') return "mobile";
|
|
return isMobile() ? "mobile" : "desktop";
|
|
}
|
|
|
|
// https://stackoverflow.com/a/73731646/944162
|
|
function isMobile() {
|
|
const mQ = matchMedia?.('(pointer:coarse)');
|
|
if (mQ?.media === '(pointer:coarse)') return !!mQ.matches;
|
|
|
|
if ('orientation' in window) return true;
|
|
|
|
return /\b(BlackBerry|webOS|iPhone|IEMobile)\b/i.test(navigator.userAgent) ||
|
|
/\b(Android|Windows Phone|iPad|iPod)\b/i.test(navigator.userAgent);
|
|
}
|
|
</script>
|
|
|
|
<link href="<%= assetPath %>/node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="<%= assetPath %>/stylesheets/theme-light.css" rel="stylesheet" />
|
|
<link href="<%= assetPath %>/stylesheets/theme-next.css" rel="stylesheet" />
|
|
<link href="<%= assetPath %>/stylesheets/style.css" rel="stylesheet">
|
|
</body>
|
|
</html>
|