mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-10 02:02:29 +08:00
54 lines
2.1 KiB
Plaintext
54 lines
2.1 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("set_password.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">
|
|
<link rel="stylesheet" href="<%= assetPath %>/node_modules/bootstrap/dist/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="<%= assetPath %>/stylesheets/theme-light.css">
|
|
<link rel="stylesheet" href="<%= assetPath %>/stylesheets/theme-next.css">
|
|
<link rel="stylesheet" href="<%= assetPath %>/stylesheets/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="col-xs-12 col-sm-10 col-md-6 col-lg-4 col-xl-4 mx-auto pt-4">
|
|
<h1><%= t("set_password.heading") %></h1>
|
|
|
|
<% if (error) { %>
|
|
<div class="alert alert-warning">
|
|
<%= error %>
|
|
</div>
|
|
<% } %>
|
|
|
|
<p><%= t("set_password.description") %></p>
|
|
|
|
<form action="set-password" method="POST">
|
|
<div class="form-group">
|
|
<label for="password1"><%= t("set_password.password") %></label>
|
|
<div class="controls">
|
|
<input id="password1" name="password1" placeholder="" class="form-control" type="password">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password2"><%= t("set_password.password-confirmation") %></label>
|
|
<div class="controls">
|
|
<input id="password2" name="password2" placeholder="" class="form-control" type="password">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<button class="btn btn-success"><%= t("set_password.button") %></button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
// Required for correct loading of scripts in Electron
|
|
if (typeof module === 'object') {window.module = module; module = undefined;}
|
|
</script>
|
|
</body>
|
|
</html>
|