share-to-mastodon/share.html

47 lines
1.5 KiB
HTML
Raw Normal View History

2023-02-10 07:30:26 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Share to Mastodon</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/dark.css" rel="stylesheet" media="(prefers-color-scheme: dark)">
<style>
.list-group-item img {
width: 20px;
height: auto;
margin-right: 5px;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="mt-2 mb-2 text-muted">Select a server</div>
<div class="list-group mb-2">
<a href="#" class="list-group-item list-group-item-action">
<img src="https://toot.community/favicon.ico">
toot.community
</a>
<a href="#" class="list-group-item list-group-item-action">
<img src="https://toot.cafe/favicon.ico">
toot.cafe
</a>
<a href="#" class="list-group-item list-group-item-action">
<img src="https://mastodon.social/favicon.ico">
mastodon.social
</a>
</div>
<a href="#" target="_blank">
<button type="button" class="btn btn-sm btn-outline-secondary w-100 mb-2">Add or remove servers</button>
</a>
</div>
<script src="js/bootstrap.js"></script>
<script src="js/settings.js"></script>
</body>
</html>