2021-08-14 11:33:06 -05:00
|
|
|
|
<!--
|
2023-03-16 05:47:59 -05:00
|
|
|
|
@source: https://github.com/kytta/share2fedi/blob/main/index.html
|
2021-08-29 06:54:07 -05:00
|
|
|
|
|
2023-03-16 04:16:01 -05:00
|
|
|
|
share2fedi - Instance-agnostic share page for the Fediverse.
|
|
|
|
|
Copyright (C) 2020-2023 Nikita Karamov <me@kytta.dev>
|
2021-08-14 11:33:06 -05:00
|
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Affero General Public License as published
|
|
|
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2021-08-29 06:54:07 -05:00
|
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
2021-08-14 11:33:06 -05:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2023-03-16 09:20:56 -05:00
|
|
|
|
<title>
|
|
|
|
|
Share₂Fedi — an instance-agnostic share page for the Fediverse
|
|
|
|
|
</title>
|
2021-08-28 09:06:57 -05:00
|
|
|
|
<meta
|
|
|
|
|
name="description"
|
2023-03-16 13:07:48 -05:00
|
|
|
|
content="Share₂Fedi is a share page for Mastodon and GNU Social. Type in your post text and the instance URL and click ‘Publish!’"
|
2021-08-28 09:06:57 -05:00
|
|
|
|
/>
|
2023-03-16 09:20:56 -05:00
|
|
|
|
<link rel="canonical" href="https://s2f.kytta.dev/" />
|
2021-08-14 11:33:06 -05:00
|
|
|
|
|
2023-03-16 05:47:59 -05:00
|
|
|
|
<script type="module" src="/lib/main.js" async defer></script>
|
|
|
|
|
<script type="module" src="/lib/count.js" async defer></script>
|
2021-08-14 11:33:06 -05:00
|
|
|
|
|
2023-03-16 11:58:52 -05:00
|
|
|
|
<link rel="icon" href="/favicon.ico" sizes="any" />
|
|
|
|
|
<link rel="icon" href="/icon.svg" type="image/svg+xml" />
|
|
|
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
|
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
2021-08-14 11:33:06 -05:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<header>
|
2023-03-16 08:36:07 -05:00
|
|
|
|
<img src="/logo.svg" alt="Share2Fedi" width="260" height="80" />
|
2021-08-14 11:33:06 -05:00
|
|
|
|
</header>
|
|
|
|
|
<main>
|
2023-03-16 06:16:21 -05:00
|
|
|
|
<form id="js-s2f-form" action="/api/share" method="POST">
|
2023-03-16 08:36:07 -05:00
|
|
|
|
<label>
|
|
|
|
|
Post text
|
2021-08-14 11:33:06 -05:00
|
|
|
|
<textarea
|
|
|
|
|
name="text"
|
|
|
|
|
id="text"
|
2023-03-16 08:36:07 -05:00
|
|
|
|
rows="7"
|
2021-08-14 11:33:06 -05:00
|
|
|
|
placeholder="What's on your mind?"
|
|
|
|
|
required
|
|
|
|
|
></textarea>
|
2023-03-16 08:36:07 -05:00
|
|
|
|
</label>
|
|
|
|
|
|
|
|
|
|
<datalist id="instanceDatalist"></datalist>
|
|
|
|
|
<label>
|
2023-03-16 13:07:48 -05:00
|
|
|
|
Choose your Mastodon or GNU Social instance
|
2021-08-14 11:33:06 -05:00
|
|
|
|
<input
|
|
|
|
|
type="url"
|
|
|
|
|
name="instance"
|
|
|
|
|
id="instance"
|
|
|
|
|
placeholder="https://"
|
2021-08-14 14:56:17 -05:00
|
|
|
|
list="instanceDatalist"
|
2021-08-14 11:33:06 -05:00
|
|
|
|
required
|
|
|
|
|
/>
|
2023-03-16 08:36:07 -05:00
|
|
|
|
</label>
|
|
|
|
|
|
|
|
|
|
<label for="remember">
|
2021-08-14 11:33:06 -05:00
|
|
|
|
<input type="checkbox" id="remember" name="remember" />
|
2023-03-16 08:36:07 -05:00
|
|
|
|
Remember my instance on this device
|
|
|
|
|
</label>
|
|
|
|
|
|
|
|
|
|
<input type="submit" value="Publish" />
|
2021-08-14 11:33:06 -05:00
|
|
|
|
</form>
|
|
|
|
|
</main>
|
|
|
|
|
<footer>
|
2023-03-16 11:15:03 -05:00
|
|
|
|
<details>
|
|
|
|
|
<summary>Privacy Notice</summary>
|
|
|
|
|
<p>
|
|
|
|
|
Share₂Fedi uses GoatCounter to collect usage information.
|
|
|
|
|
<a href="https://share2fedi.goatcounter.com/">
|
|
|
|
|
The usage data is public.
|
|
|
|
|
</a>
|
|
|
|
|
The following information gets collected:
|
|
|
|
|
</p>
|
|
|
|
|
<ul>
|
|
|
|
|
<li><code>User-Agent</code> header</li>
|
|
|
|
|
<li>Screen size</li>
|
|
|
|
|
<li>A hash of the IP address, User-Agent, and random number</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<p>
|
|
|
|
|
This data is kept for the maximum of 90 days. None of this information
|
|
|
|
|
is shared with third parties. See
|
|
|
|
|
<a href="https://www.goatcounter.com/help/privacy"
|
|
|
|
|
>GoatCounter’s privacy policy</a
|
|
|
|
|
>
|
|
|
|
|
for more information.
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
s2f.kytta.dev is hosted on Vercel. Vercel processes IP addresses,
|
|
|
|
|
system configuration information, and other information about traffic
|
|
|
|
|
to and from s2f.kytta.dev. Vercel does not store this information nor
|
|
|
|
|
does it get shared with third parties. See
|
|
|
|
|
<a href="https://vercel.com/legal/privacy-policy#customers"
|
|
|
|
|
>Vercel's privacy policy</a
|
|
|
|
|
>
|
|
|
|
|
for more information.
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
When you click the ‘Publish’ button, you’ll get redirected to a
|
|
|
|
|
Fediverse instance you’ve specified. It may process and/or store your
|
|
|
|
|
data. Please refer to the privacy policy of the respective instance.
|
|
|
|
|
</p>
|
|
|
|
|
</details>
|
2023-03-16 08:36:07 -05:00
|
|
|
|
<a href="https://joinmastodon.org/">What is Mastodon?</a>
|
2023-03-16 09:20:56 -05:00
|
|
|
|
<a href="https://github.com/kytta/share2fedi">Share₂Fedi on GitHub</a>
|
2023-03-16 11:16:02 -05:00
|
|
|
|
<a href="https://stats.uptimerobot.com/QOXj3uXPDX">Status</a>
|
2021-08-14 11:33:06 -05:00
|
|
|
|
</footer>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|