2021-08-14 11:33:06 -05:00
|
|
|
<!--
|
2022-02-12 06:35:53 -05:00
|
|
|
@source: https://codeberg.org/kytta/toot/src/branch/main/src/index.html
|
2021-08-29 06:54:07 -05:00
|
|
|
|
2021-08-14 11:33:06 -05:00
|
|
|
toot - Cross-instance share page for Mastodon
|
2022-02-12 06:36:08 -05:00
|
|
|
Copyright (C) 2020-2022 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" />
|
2021-08-28 09:06:57 -05:00
|
|
|
<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!’"
|
|
|
|
/>
|
2021-08-14 11:33:06 -05:00
|
|
|
|
2021-08-14 11:49:32 -05:00
|
|
|
<link href="/style.css" rel="stylesheet" />
|
2021-08-14 11:33:06 -05:00
|
|
|
|
|
|
|
<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="/icon.svg" alt="toot" width="72" height="72" />
|
|
|
|
</h1>
|
|
|
|
<p>
|
|
|
|
for
|
|
|
|
<img src="/mastodon.svg" alt="Mastodon" width="95.5" height="27" />
|
|
|
|
</p>
|
|
|
|
</header>
|
|
|
|
<main>
|
2021-08-27 08:03:24 -05:00
|
|
|
<form action="/api/toot" method="POST">
|
2021-08-14 11:33:06 -05:00
|
|
|
<section>
|
|
|
|
<label for="text">Post text</label>
|
|
|
|
<textarea
|
|
|
|
name="text"
|
|
|
|
id="text"
|
|
|
|
rows="6"
|
|
|
|
placeholder="What's on your mind?"
|
|
|
|
required
|
|
|
|
></textarea>
|
|
|
|
</section>
|
|
|
|
<section>
|
2021-08-14 14:56:17 -05:00
|
|
|
<datalist id="instanceDatalist"></datalist>
|
2021-08-14 11:33:06 -05:00
|
|
|
<label for="instance">Choose your Mastodon instance</label>
|
|
|
|
<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
|
|
|
|
/>
|
|
|
|
</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>
|
2022-02-12 06:35:53 -05:00
|
|
|
<a href="https://codeberg.org/kytta/toot">toot on Codeberg</a>
|
2021-08-14 11:33:06 -05:00
|
|
|
</section>
|
2022-11-14 04:53:29 -05:00
|
|
|
<script data-goatcounter="https://share2fedi.goatcounter.com/count"
|
|
|
|
async src="//gc.zgo.at/count.js"></script>
|
|
|
|
<noscript>
|
|
|
|
<img src="https://share2fedi.goatcounter.com/count?p=/">
|
|
|
|
</noscript>
|
2021-08-14 11:33:06 -05:00
|
|
|
</footer>
|
2021-08-14 11:54:32 -05:00
|
|
|
<script src="/main.js"></script>
|
2021-08-14 11:33:06 -05:00
|
|
|
</body>
|
|
|
|
</html>
|