GoToSocial-FE-Example/app/templates/index.html

27 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<body>
<head>
<title>Some kind of Flask App</title>
</head>
<div style="margin: auto;padding: 2em;overflow: auto;">
<div style="display: flex;padding: 1em;border: black solid 4px;overflow: auto;flex-flow: column;min-width: 16em;">
<div style="margin-bottom: 1em;border: solid black 4px;display: flex;">
<p style="margin: auto;padding: 1em;text-align: center;">Put in your instance domain!</p>
</div>
<div style="flex: auto;flex-flow: column;display: flex;border: solid black 4px;">
<form method="POST" action="/set_domain" style="display: inherit;padding: 1em;flex-flow: column;flex: inherit;">
<input type="text" name="domain" style="margin: auto;">
<div style="display: inherit;flex: inherit;padding: 1em;padding-bottom: 0;">
<div style="max-width: 16em;display: inherit;flex: inherit;margin: auto;"><input type="submit"
style="display: inherit;flex: inherit;" value="Login!"></div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>