32 lines
963 B
Plaintext
32 lines
963 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<%- include('layout/head.ejs', { title: 'Intended Link' }) %>
|
|
|
|
<body>
|
|
<%- include('layout/header.ejs') %>
|
|
<main class="container">
|
|
<h1>Intended Link</h1>
|
|
<p>Securely share messages with verified recipients via OAuth.</p>
|
|
|
|
<h2>How it works:</h2>
|
|
<ol>
|
|
<li> Enter your secret message.</li>
|
|
<li> Choose the service and username of the recipient.</li>
|
|
<li> We generate a secure link that only the intended recipient can access.</li>
|
|
<li> The recipient must authenticate with the specified account for the service in order to
|
|
access the message.</li>
|
|
</ol>
|
|
|
|
<h2>Supported services</h2>
|
|
<ul>
|
|
<li> Github</li>
|
|
<li> Google</li>
|
|
</ul>
|
|
</main>
|
|
|
|
<%- include('layout/footer.ejs') %>
|
|
<!-- built files will be auto injected -->
|
|
</body>
|
|
|
|
</html> |