mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
51 lines
1.8 KiB
Plaintext
51 lines
1.8 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>Login</title>
|
|
<link rel="apple-touch-icon" sizes="180x180" href="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>Set password</h1>
|
|
|
|
<% if (error) { %>
|
|
<div class="alert alert-warning">
|
|
<%= error %>
|
|
</div>
|
|
<% } %>
|
|
|
|
<p>Before you can start using Trilium from web, you need to set a password first. You will then use this password to login.</p>
|
|
|
|
<form action="set-password" method="POST">
|
|
<div class="form-group">
|
|
<label for="password">Password</label>
|
|
<div class="controls">
|
|
<input id="password" name="password1" placeholder="" class="form-control" type="password">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password">Password confirmation</label>
|
|
<div class="controls">
|
|
<input id="password" name="password2" placeholder="" class="form-control" type="password">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<button class="btn btn-success">Set password</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
// Required for correct loading of scripts in Electron
|
|
if (typeof module === 'object') {window.module = module; module = undefined;}
|
|
</script>
|
|
|
|
<link href="libraries/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
</body>
|
|
</html>
|