92 lines
2.9 KiB
HTML
92 lines
2.9 KiB
HTML
<!--
|
|
@source: https://github.com/kytta/share2fedi/blob/main/index.html
|
|
|
|
share2fedi - Instance-agnostic share page for the Fediverse.
|
|
Copyright (C) 2020-2023 Nikita Karamov <me@kytta.dev>
|
|
|
|
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/>.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-->
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>toot — cross-instance share page for Mastodon</title>
|
|
<meta
|
|
name="description"
|
|
content="toot allows you to share stuff on Mastodon, cross-instance. Just put in your post text and the instance URL and click ‘Toot!’"
|
|
/>
|
|
<link rel="canonical" href="https://toot.kytta.dev/" />
|
|
|
|
<script type="module" src="/lib/main.js" async defer></script>
|
|
<script type="module" src="/lib/count.js" async defer></script>
|
|
|
|
<link href="/favicon.ico" rel="icon" type="image/x-icon" />
|
|
<link href="/apple-touch-icon.png" rel="icon" type="image/svg+xml" />
|
|
<link href="/apple-touch-icon.png" rel="apple-touch-icon" />
|
|
<link href="/site.webmanifest" rel="manifest" />
|
|
<meta name="theme-color" content="#3088d4" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>
|
|
<img src="/logo.svg" alt="Share2Fedi" width="260" height="80" />
|
|
</h1>
|
|
</header>
|
|
<main>
|
|
<form id="js-s2f-form" action="/api/share" method="POST">
|
|
<section>
|
|
<label for="text">Post text</label>
|
|
<textarea
|
|
name="text"
|
|
id="text"
|
|
rows="6"
|
|
placeholder="What's on your mind?"
|
|
required
|
|
></textarea>
|
|
</section>
|
|
<section>
|
|
<datalist id="instanceDatalist"></datalist>
|
|
<label for="instance">Choose your Mastodon instance</label>
|
|
<input
|
|
type="url"
|
|
name="instance"
|
|
id="instance"
|
|
placeholder="https://"
|
|
list="instanceDatalist"
|
|
required
|
|
/>
|
|
</section>
|
|
<section class="remember">
|
|
<input type="checkbox" id="remember" name="remember" />
|
|
<label for="remember">Remember my instance on this device</label>
|
|
</section>
|
|
<section class="submit">
|
|
<input type="submit" value="TOOT!" />
|
|
</section>
|
|
</form>
|
|
</main>
|
|
<footer>
|
|
<section>
|
|
<a href="https://joinmastodon.org/">What is Mastodon?</a>
|
|
</section>
|
|
<section>
|
|
<a href="https://github.com/kytta/share2fedi">toot on GitHub</a>
|
|
</section>
|
|
</footer>
|
|
</body>
|
|
</html>
|