Update index.html

This commit is contained in:
bihlink 2022-07-06 17:08:51 +02:00 committed by GitHub
parent 6e6f417515
commit f0453c0669
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 6 deletions

View File

@ -19,12 +19,15 @@
<br>
<hr><br>
<form action="javascript:genUrl()">
<label>Choose Type Of Instance</label><br>
<input type="radio" id="itype" value="/users/" checked><label>Mastodon</label><br>
<input type="radio" id="itype" value="/users/"><label>Pleroma</label><br>
<input type="radio" id="itype" value="/@"><label>Misskey (coming soon)</label><br>
<input type="radio" id="itype" value="/author/"><label>WordPress (coming soon)</label>
<br><br>
<label>Choose Type Of Instance:
<select id="itype">
<option value="/users/">Mastodon</option>
<option value="/users/">Pleroma</option>
<option value="/@">Misskey (coming soon)</option>
<option value="/author/">WordPress (coming soon)</option>
</select>
</label>
<br>
<label>Instance URL:<input required type="text" id="urlin" placeholder="mastodon.social"
oninvalid="this.setCustomValidity('Insert your instance URL. Example: mastodon.social')"
oninput="this.setCustomValidity('')"></label>