1
Fork 0
mirror of https://github.com/Steffo99/synapse-account-provisioner.git synced 2024-12-22 14:54:25 +00:00

First commit

This commit is contained in:
Steffo 2023-08-26 05:36:40 +02:00
commit 2bcf52992f
Signed by: steffo
GPG key ID: 2A24051445686895
3 changed files with 79 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/.idea

0
.nojekyll Normal file
View file

78
index.html Normal file
View file

@ -0,0 +1,78 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Synapse Account Provisioner</title>
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@9.0.1/dist/base.root.min.css" type="text/css" />
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@9.0.1/dist/classic.root.min.css" type="text/css" />
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@9.0.1/dist/glass.root.min.css" type="text/css" />
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@9.0.1/dist/layouts-center.root.min.css" type="text/css" />
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@9.0.1/dist/colors-royalblue.root.min.css" type="text/css" />
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@9.0.1/dist/fonts-fira-ghpages.root.min.css" type="text/css" />
<script>
</script>
</head>
<body class="theme-bluelib layout-center">
<header>
<h1>
Synapse Account Provisioner
</h1>
</header>
<main>
<h2>
Create a new account
</h2>
<div class="chapter-1">
<form class="panel box form-flex">
<h3>
Homeserver details
</h3>
<label>
<span>URL</span>
<input disabled class="fade" type="text" name="homeserver" placeholder="https://uniberry.info">
<span></span>
</label>
<label>
<span>Secret</span>
<input disabled class="fade" type="text" name="homeserver" placeholder="June-Stardom-Matter-Thinly-Stream3-Curing">
<span></span>
</label>
<h3>
Account details
</h3>
<label>
<span>Username</span>
<input disabled class="fade" type="text" name="username" placeholder="steffo">
<span></span>
</label>
<label>
<span>Password</span>
<input disabled class="fade" type="password" name="password" placeholder="hunter2">
<span></span>
</label>
<div class="form-flex-choice">
<span>Privileges</span>
<div>
<label>
<input disabled class="fade" type="checkbox" name="isadmin">
Homeserver administrator
</label>
</div>
<span></span>
</div>
<h3>
Actions
</h3>
<label>
<span></span>
<button disabled class="fade">Create</button>
<span></span>
</label>
</form>
</div>
</main>
<footer>
</footer>
</body>
</html>