This repository has been archived on 2025-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
mylinks/modules/password/web/password.ejs

22 lines
679 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<title><%= meta.title %></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
<%- include('style.css'); %>
</style>
</head>
<body>
<div class="container">
<h1>Passwort benötigt</h1>
<form action="/<%= accessId %>" method="post" >
<input type="password" name="password" class="form-control" placeholder="Passwort eingeben" />
<button type="submit" class="btn btn-primary">Link öffnen</button>
</form>
</div>
</body>
</html>