118 lines
3.4 KiB
HTML
118 lines
3.4 KiB
HTML
|
<!DOCTYPE html>
|
||
|
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<base target="_blank" />
|
||
|
<title>Share freedom settings</title>
|
||
|
<!-- build:styles -->
|
||
|
<link rel="stylesheet" href="css/bootstrap.css">
|
||
|
<link rel="stylesheet" href="css/fork-awesome.css">
|
||
|
<link rel="stylesheet" href="css/sharer.css">
|
||
|
<!-- endbuild -->
|
||
|
<!-- build:scripts -->
|
||
|
<script src="js/jquery.js"></script>
|
||
|
<!-- endbuild -->
|
||
|
<style>
|
||
|
body {
|
||
|
background-image: url('img/wallpaper.png');
|
||
|
background-repeat: no-repeat;
|
||
|
background-attachment: fixed;
|
||
|
background-size: cover;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container-fluid btns-container py-3">
|
||
|
<div class="row">
|
||
|
<div class="col-8 text-left"><img src="img/icon.png" class="img-fluid" alt="Fedishare"></div>
|
||
|
<div class="col-4 text-right">Wallpaper by:
|
||
|
<a href="https://fosstodon.org/@yarmo/101907879701964911">yarmo [at] fosstodon.org</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
<form>
|
||
|
<p><h2>Settings</h2></p>
|
||
|
<fieldset>
|
||
|
<legend><h4>Instances</h4></legend>
|
||
|
<label><b>Important:</b> Insert the complete URL with http or https</label>
|
||
|
<p>
|
||
|
<p>Gnusocial</p>
|
||
|
<input type="text" id="gnusocialHost" >
|
||
|
<button type="submit">Save</button>
|
||
|
</p>
|
||
|
<p>
|
||
|
<p>Mastodon / Misskey</p>
|
||
|
<input type="text" id="mastodonHost" >
|
||
|
<button type="submit">Save</button>
|
||
|
</p>
|
||
|
<p>
|
||
|
<p>Pleroma</p>
|
||
|
<input type="text" id="pleromaHost" >
|
||
|
<button type="submit">Save</button>
|
||
|
</p>
|
||
|
<p>
|
||
|
<p>Hubzilla / Osada / Zap</p>
|
||
|
<input type="text" id="hubzillaHost" >
|
||
|
<button type="submit">Save</button>
|
||
|
</p>
|
||
|
<p>
|
||
|
<p>Diaspora</p>
|
||
|
<input type="text" id="diasporaHost">
|
||
|
<button type="submit">Save</button>
|
||
|
</p>
|
||
|
<p>
|
||
|
<p>Friendica</p>
|
||
|
<input type="text" id="friendicaHost">
|
||
|
<button type="submit">Save</button>
|
||
|
</p>
|
||
|
<p>
|
||
|
<p>Lemmy</p>
|
||
|
<input type="text" id="lemmyHost">
|
||
|
<button type="submit">Save</button>
|
||
|
</p>
|
||
|
<p>
|
||
|
<p>Socialhome</p>
|
||
|
<input type="text" id="socialhomeHost" >
|
||
|
<button type="submit">Save</button>
|
||
|
</p>
|
||
|
<p>
|
||
|
<p>Xmpp ID</p>
|
||
|
<input type="text" id="xmppHost">
|
||
|
<button type="submit">Save</button>
|
||
|
</p>
|
||
|
<p>
|
||
|
<p>Netxcloud host</p>
|
||
|
<input type="text" id="nextcloudHost">
|
||
|
<button type="submit">Save</button>
|
||
|
</p>
|
||
|
<p>
|
||
|
<p>Netxcloud username</p>
|
||
|
<input type="text" id="nextcloudUsername">
|
||
|
<button type="submit">Save</button>
|
||
|
</p>
|
||
|
<p>
|
||
|
<p>Netxcloud password</p>
|
||
|
<input type="password" id="nextcloudPassword">
|
||
|
<button type="submit">Save</button>
|
||
|
</p>
|
||
|
</fieldset>
|
||
|
<fieldset>
|
||
|
<p>
|
||
|
<button id="update">Update</button>
|
||
|
<button id="reset">Reset</button>
|
||
|
</p>
|
||
|
</fieldset>
|
||
|
<fieldset>
|
||
|
<legend><h4>Keyboard shortcut</h4></legend>
|
||
|
<input type="text" id="shortcut" >
|
||
|
<p>
|
||
|
<button id="update">Update</button>
|
||
|
<button id="reset">Reset</button>
|
||
|
</p>
|
||
|
</fieldset>
|
||
|
</form>
|
||
|
<script src="js/options.js"></script>
|
||
|
</body>
|
||
|
</html>
|