blob: a6df0daf5f7f39331805847ed95e674a7df62e9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<div class="narrow">
<?= partial('partials/header') ?>
<?php if(!$this->authorizationEndpoint): ?>
<div id="authorization_endpoint">
<h3>Authorization Endpoint</h3>
<p><i>The authorization endpoint tells this app where to direct your browser to sign you in.</i></p>
<div class="bs-callout bs-callout-danger">Could not find your authorization endpoint!</div>
<p>You need to set your authorization endpoint in a <code><link></code> tag on your home page.</p>
<?= partial('partials/auth-endpoint-help') ?>
</div>
<?php endif; ?>
<?php if(!$this->tokenEndpoint): ?>
<div id="token_endpoint">
<h3>Token Endpoint</h3>
<p><i>The token endpoint is where this app will make a request to get an access token after obtaining authorization.</i></p>
<div class="bs-callout bs-callout-danger">Could not find your token endpoint!</div>
<p>You need to set your token endpoint in a <code><link></code> tag on your home page.</p>
<?= partial('partials/token-endpoint-help') ?>
</div>
<?php endif; ?>
<?php if(!$this->micropubEndpoint): ?>
<div id="micropub_endpoint">
<h3>Micropub Endpoint</h3>
<p><i>The Micropub endpoint is the URL this app will use to post new photos.</i></p>
<div class="bs-callout bs-callout-danger">Could not find your Micropub endpoint!</div>
<p>You need to set your Micropub endpoint in a <code><link></code> tag on your home page.</p>
<?= partial('partials/micropub-endpoint-help', $this) ?>
</div>
<?php endif; ?>
<?php if($this->authorizationURL): ?>
<h3>Sign In</h3>
<p>Click the button below to go to your website to allow this app to be able to post to your site.</p>
<form action="/auth/redirect" method="get">
<p>Choose the scope to request:</p>
<ul style="list-style-type: none;">
<li><input type="radio" name="scope" value="create update media" checked="checked"> create update media (default)</li>
<li><input type="radio" name="scope" value="create"> create</li>
<li><input type="radio" name="scope" value="post"> post (legacy)</li>
</ul>
<button class="btn btn-primary" type="submit" id="auth-submit">Authorize</button>
<input type="hidden" name="authorization_url" value="<?= $this->authorizationURL ?>">
</form>
<?php endif; ?>
</div>
|