Skip to content

Commit

Permalink
style profile page
Browse files Browse the repository at this point in the history
  • Loading branch information
kritzl committed Jul 11, 2024
1 parent 3bd0248 commit 129bad9
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions src/vinywaji/gui/templates/views/profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,23 @@
{% load static %}

{% block authorized-content %}
<h4>Profile Settings</h4>
<h4 class="text-4xl leading-normal">
Profile Settings
</h4>

<section>
<h5>Basic Information</h5>
<div>
<span>Username:</label>
<span>{{ request.user }} </span>
</div>
<section class="mt-4">
<h5 class="text-2xl leading-normal">Basic Information</h5>
<dl>
<div class="flex gap-2">
<dt class="font-bold">Username:</dt>
<dd>{{ request.user }} </dd>
</div>

</dl>
</section>

<section>
<h5>Webhooks</h5>
<section class="mt-4">
<h5 class="text-2xl leading-normal">Webhooks</h5>
<div>
TODO: Put webhook configuration here
</div>
Expand Down

0 comments on commit 129bad9

Please sign in to comment.