summaryrefslogtreecommitdiff
path: root/views/settings.php
diff options
context:
space:
mode:
authorAaron Parecki <aaron@parecki.com>2019-02-24 14:01:27 -0600
committerGitHub <noreply@github.com>2019-02-24 14:01:27 -0600
commitc38d6c9d09211976b63200dfd1d384bf890fc002 (patch)
tree2780d7f08cda7faef0132b0b615dec2fcbccc59c /views/settings.php
parentacc8a8e673b1b71ea828422ec15f77450a409983 (diff)
parentd30486e7c610e2ba2998ed5997fd86c6dcae5c77 (diff)
Merge pull request #108 from dshanske/profile
Simple Addition of Profile Data to Quill
Diffstat (limited to 'views/settings.php')
-rw-r--r--views/settings.php7
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>