diff options
Diffstat (limited to 'views/settings.php')
-rw-r--r-- | views/settings.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/views/settings.php b/views/settings.php index f94b9fe..51d3a6b 100644 --- a/views/settings.php +++ b/views/settings.php @@ -8,6 +8,13 @@ <td>me</td> <td><code><?= $this->user->url; ?></code> (should be your URL)</td> </tr> + <?php if ( profile('name') ) { + ?> + <tr> + <td>User Name</td> + <td><code><?= profile('name'); ?></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> |