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

17 lines
399 B
HTML
Raw Normal View History

2023-02-19 16:28:53 -06:00
<!DOCTYPE html>
<html>
<body>
<head>
<title>Some kind of Flask App</title>
</head>
<div>
<p>Put in your instance domain!</p>
<form method="POST" action={{url_for('set_domain')}}>
<input type="text" name="domain"></input>
<input type="submit" value="Go!"></input>
</form>
2023-02-19 16:28:53 -06:00
<a href="/login">login</a>
</div>
</body>
</html>