You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
apogee/src/view/authorize.html.template

28 lines
457 B
Plaintext

<h1>App Authorization</h1>
<h2>Requested Permissions</h2>
<ul>
%( if( scopes.read ) { )
<li>
Read posts
</li>
%( } )
%( if( scopes.write ) { )
<li>
Write posts
</li>
%( } )
%( if( scopes.follow ) { )
<li>
Follow other accounts
</li>
%( } )
</ul>
<form action="/oauth/authorize" method="post">
Password: <input type='password' name='password'/><br/>
<input type="submit" />
<input type='hidden' name='id' value='%s{app->client.id}' />
</form>