diff options
author | Aaron Parecki <aaron@parecki.com> | 2019-02-24 14:33:30 -0600 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2019-02-24 14:33:30 -0600 |
commit | 7e134358b506fc90e269c92570f6717e1461ad1a (patch) | |
tree | 905ddbdb186ddcdd2e7d234d46d6fde54efebdc7 /views/settings.php | |
parent | c38d6c9d09211976b63200dfd1d384bf890fc002 (diff) |
clean up indieauth profile stuff
Diffstat (limited to 'views/settings.php')
-rw-r--r-- | views/settings.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/views/settings.php b/views/settings.php index 51d3a6b..0f2c5e3 100644 --- a/views/settings.php +++ b/views/settings.php @@ -8,13 +8,18 @@ <td>me</td> <td><code><?= $this->user->url; ?></code> (should be your URL)</td> </tr> - <?php if ( profile('name') ) { - ?> + <?php if(profile('name')) { ?> <tr> - <td>User Name</td> + <td>Name</td> <td><code><?= profile('name'); ?></code> </td> </tr> - <?php } ?> + <?php } ?> + <?php if(profile('photo')) { ?> + <tr> + <td>Photo</td> + <td><code><?= profile('photo'); ?></code> </td> + </tr> + <?php } ?> <tr> <td>scope</td> <td><code><?= $this->user->micropub_scope ?></code> (should be a space-separated list of permissions including "create")</td> |