more user friendly

This commit is contained in:
tsmethurst 2021-03-22 17:01:35 +01:00
parent 43eb9b8c21
commit 404c41d20d
1 changed files with 4 additions and 14 deletions

View File

@ -2,7 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<title>Auth</title> <title>GoToSocial Authorization</title>
<link <link
rel="stylesheet" rel="stylesheet"
href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
@ -11,13 +11,13 @@
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head> </head>
{{if len .code | eq 0 }}
<body> <body>
<div class="container"> <div class="container">
<div class="jumbotron"> <div class="jumbotron">
<form action="/oauth/authorize" method="POST"> <form action="/oauth/authorize" method="POST">
<h1>Authorize</h1> <h1>Hi {{.user}}!</h1>
<p>The client would like to perform actions on your behalf.</p> <p>Application <b>{{.appname}}</b> {{if len .appwebsite | eq 0 | not}}({{.appwebsite}}) {{end}}would like to perform actions on your behalf, with scope <em>{{.scope}}</em>.</p>
<p>The application will redirect to {{.redirect}} to continue.</p>
<p> <p>
<button <button
type="submit" type="submit"
@ -31,14 +31,4 @@
</div> </div>
</div> </div>
</body> </body>
{{else}}
<body>
<div class="container">
<div class="jumbotron">
{{.code}}
</div>
</div>
</body>
{{end}}
</html> </html>