summaryrefslogtreecommitdiff
path: root/views/auth_start.php
blob: 70dc83d47e5c4ad59700f89f38eea1c534a42258 (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
<div class="narrow">
  <?= partial('partials/header') ?>

<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>

  <?php if($this->authorizationEndpoint): ?>
    <div class="bs-callout bs-callout-success">Found your authorization endpoint: <code><?= $this->authorizationEndpoint ?></code></div>
  <?php else: ?>
    <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>&lt;link&gt;</code> tag on your home page or in an HTTP header.</p>
    <?= partial('partials/auth-endpoint-help') ?>
  <?php endif; ?>
</div>

<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>

  <?php if($this->tokenEndpoint): ?>
    <div class="bs-callout bs-callout-success">Found your token endpoint: <code><?= $this->tokenEndpoint ?></code></div>
  <?php else: ?>
    <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>&lt;link&gt;</code> tag on your home page or in an HTTP header.</p>
    <?= partial('partials/token-endpoint-help') ?>
  <?php endif; ?>

</div>

<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>

  <?php if($this->micropubEndpoint): ?>
    <div class="bs-callout bs-callout-success">Found your Micropub endpoint: <code><?= $this->micropubEndpoint ?></code></div>
  <?php else: ?>
    <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>&lt;link&gt;</code> tag on your home page or in an HTTP header.</p>
    <?= partial('partials/micropub-endpoint-help', $this) ?>
  <?php endif; ?>

</div>

<?php if($this->authorizationURL): ?>

  <h3>Ready!</h3>

  <p>Clicking the button below will take you to <strong>your</strong> authorization server which is where you will allow this app to be able to post to your site.</p>

  <a href="<?= $this->authorizationURL ?>" class="btn btn-primary">Authorize</a>

<?php endif; ?>

</div>